Added BOOL and INT

This commit is contained in:
Jozef Nagy 2024-04-03 09:31:59 +02:00
parent c913ddaf20
commit f5edc1f1e8
No known key found for this signature in database
GPG key ID: 5B49DC29F09685D6

View file

@ -24,6 +24,9 @@ typedef char CHAR8;
typedef char16_t CHAR16; typedef char16_t CHAR16;
typedef void VOID; typedef void VOID;
typedef BOOLEAN BOOL;
typedef INT32 INT;
#define TRUE 1 #define TRUE 1
#define FALSE 0 #define FALSE 0