Files
LCEMP-Server/Linux/stubs/tchar.h
2026-03-15 22:25:51 -03:00

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