include: Add some tchar forwards.

Signed-off-by: Daniel Lehman <dlehman@esri.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Daniel Lehman 2016-08-22 18:23:24 -07:00 committed by Alexandre Julliard
parent 5d088206d2
commit 94faa161ee
1 changed files with 2 additions and 1 deletions

View File

@ -75,7 +75,7 @@ extern "C" {
#define _gettc WINE_tchar_routine(getc, getc, getwc)
#define _gettchar WINE_tchar_routine(getchar, getchar, getwchar)
#define _getts WINE_tchar_routine(gets, gets, getws)
#define _isalnum WINE_tchar_routine(isalnum, _ismbcalnum, iswalnum)
#define _istalnum WINE_tchar_routine(isalnum, _ismbcalnum, iswalnum)
#define _istalpha WINE_tchar_routine(isalpha, _ismbcalpha, iswalpha)
#define _istascii WINE_tchar_routine(isascii, __isascii, iswascii)
#define _istcntrl WINE_tchar_routine(iscntrl, iscntrl, iswcntrl)
@ -197,6 +197,7 @@ extern "C" {
#define _tspawnvpe WINE_tchar_routine(_spawnvpe, _spawnvpe, _tspawnvpe)
#define _tsplitpath WINE_tchar_routine(_splitpath, _splitpath, _wsplitpath)
#define _tstat WINE_tchar_routine(_stat, _stat, _wstat)
#define _tstati64 WINE_tchar_routine(_stati64, _stati64, _wstati64)
#define _tstrdate WINE_tchar_routine(_strdate, _strdate, _wstrdate)
#define _tstrtime WINE_tchar_routine(_strtime, _strtime, _wstrtime)
#define _tsystem WINE_tchar_routine(system, system, _wsystem)