1
0

write shit

This commit is contained in:
2025-11-27 14:15:20 +08:00
parent ac42f426f0
commit 9b28306597
7 changed files with 168 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
#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