mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
tchar.h
svn path=/trunk/; revision=11230
This commit is contained in:
parent
8fa949ca79
commit
41c01ba24e
1 changed files with 9 additions and 1 deletions
|
@ -32,6 +32,7 @@
|
|||
#define _UNICODE
|
||||
#include <wchar.h>
|
||||
#endif
|
||||
#include <tchar.h>
|
||||
|
||||
#include <windows.h>
|
||||
#include <windowsx.h>
|
||||
|
@ -39,7 +40,6 @@
|
|||
#include <commdlg.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <tchar.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
|
@ -139,3 +139,11 @@ typedef struct
|
|||
UINT cfStrFName;
|
||||
#endif
|
||||
} WINEFILE_GLOBALS;
|
||||
|
||||
#ifdef __WINE__
|
||||
#ifdef UNICODE
|
||||
extern void _wsplitpath(const WCHAR* path, WCHAR* drv, WCHAR* dir, WCHAR* name, WCHAR* ext);
|
||||
#else
|
||||
extern void _splitpath(const CHAR* path, CHAR* drv, CHAR* dir, CHAR* name, CHAR* ext);
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue