We no longer use TCHAR.

This commit is contained in:
Henrik Rydgård 2020-09-29 10:25:26 +02:00
parent 51e2e7f8d5
commit ecceeaa810
2 changed files with 2 additions and 14 deletions

View file

@ -28,12 +28,6 @@
}
#endif
#ifdef _WIN32
#include <tchar.h>
#endif // _WIN32
// Byteswapping
#ifndef ARRAY_SIZE
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
@ -71,9 +65,3 @@ inline uint64_t swap64(const uint8_t* _pData) {return swap64(*(const uint64_t*)_
#else
#define __THREAD __thread
#endif
// For really basic windows code compat
#ifndef _TCHAR_DEFINED
typedef char TCHAR;
#endif