Use of sized bool types for CFont

This commit is contained in:
Sergeanur
2021-01-16 16:05:27 +02:00
parent a06bd7f735
commit caa7d3177c
3 changed files with 176 additions and 65 deletions

View File

@ -79,6 +79,10 @@ typedef int64_t int64;
// hardcode ucs-2
typedef uint16_t wchar;
typedef uint8 bool8;
typedef uint16 bool16;
typedef uint32 bool32;
#if defined(_MSC_VER)
typedef ptrdiff_t ssize_t;
#endif