mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
[CRT]
- Fix some UNICODE vs non UNICODE definition mess. svn path=/trunk/; revision=57172
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
#define do_spawnT do_spawnW
|
||||
#define valisttosT valisttosW
|
||||
#define extT extW
|
||||
#define access_dirT access_dirW
|
||||
#else
|
||||
#define sT "s"
|
||||
#define find_execT find_execA
|
||||
@@ -25,6 +26,7 @@
|
||||
#define do_spawnT do_spawnA
|
||||
#define valisttosT valisttosA
|
||||
#define extT extA
|
||||
#define access_dirT access_dirA
|
||||
#endif
|
||||
|
||||
#define MK_STR(s) #s
|
||||
|
||||
@@ -4,9 +4,11 @@
|
||||
#ifdef _UNICODE
|
||||
#define _TS S
|
||||
#define sT "S"
|
||||
#define access_dirT access_dirW
|
||||
#else
|
||||
#define _TS s
|
||||
#define sT "s"
|
||||
#define access_dirT access_dirA
|
||||
#endif
|
||||
|
||||
#define MK_STR(s) #s
|
||||
|
||||
Reference in New Issue
Block a user