11 lines
179 B
C++
11 lines
179 B
C++
|
|
#include <cwchar>
|
||
|
|
|
||
|
|
#if defined(BASALT_OS_WINDOWS)
|
||
|
|
#define BSCHAR wchar_t
|
||
|
|
#define _BSTEXT(x) L##x
|
||
|
|
#define BSTEXT(x) _BSTEXT(x)
|
||
|
|
#else
|
||
|
|
#define BSCHAR char
|
||
|
|
#define BSTEXT(x) x
|
||
|
|
#endif
|