Add CHAR and PCSTR to windows_base.h

This commit is contained in:
Ellie Hermaszewska 2023-07-27 13:42:37 +08:00
parent 4ed1474030
commit 30a1ce78f0
No known key found for this signature in database
1 changed files with 3 additions and 0 deletions

View File

@ -31,6 +31,9 @@ typedef wchar_t WCHAR;
typedef WCHAR *NWPSTR, *LPWSTR, *PWSTR;
typedef unsigned char UCHAR, *PUCHAR;
typedef char CHAR;
typedef const CHAR *LPCSTR, *PCSTR;
typedef INT BOOL;
typedef BOOL WINBOOL;