util/compat: fix windows UNICODE defines
This commit is contained in:
parent
8ad74bf62f
commit
56f0fde7c6
1 changed files with 2 additions and 2 deletions
|
@ -52,10 +52,10 @@
|
|||
|
||||
// Make sure we get the "unicode" (actually UTF-16) versions of win32 APIs; it defaults to legacy crippled ones.
|
||||
#ifndef UNICODE
|
||||
#define UNICODE
|
||||
#define UNICODE 1
|
||||
#endif
|
||||
#ifndef _UNICODE
|
||||
#define _UNICODE
|
||||
#define _UNICODE 1
|
||||
#endif
|
||||
|
||||
// Ask windows.h to include a little bit less of the stupid crap we'll never use.
|
||||
|
|
Loading…
Reference in a new issue