mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-06-06 08:57:10 +00:00
20 lines
286 B
C
20 lines
286 B
C
#pragma once
|
|
#include <cwchar>
|
|
|
|
#ifndef _T
|
|
#define _T(x) L##x
|
|
#endif
|
|
#ifndef _TCHAR_DEFINED
|
|
typedef wchar_t TCHAR;
|
|
#define _TCHAR_DEFINED
|
|
#endif
|
|
#ifndef _tcslen
|
|
#define _tcslen wcslen
|
|
#endif
|
|
#ifndef _tcscpy
|
|
#define _tcscpy wcscpy
|
|
#endif
|
|
#ifndef _tcsncpy
|
|
#define _tcsncpy wcsncpy
|
|
#endif
|