1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00

Update sqconfig.h

This commit is contained in:
Sandu Liviu Catalin 2021-02-05 15:08:50 +02:00
parent 866f916871
commit a6326c954d

View File

@ -53,13 +53,16 @@ typedef SQUnsignedInteger SQBool;
typedef SQInteger SQRESULT;
#ifdef SQUNICODE
#include <wchar.h>
#include <wctype.h>
#ifdef __cplusplus
#include <cwchar>
#include <cwctype>
#else
#include <wchar.h>
#include <wctype.h>
#endif
typedef wchar_t SQChar;
#define scstrcmp wcscmp
#ifdef _WIN32