Implement pseudo boolean type.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2018-08-14 10:42:52 +02:00
parent 7e3c79d3c5
commit 1cb3e394cf
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 0 deletions

View File

@ -60,6 +60,7 @@ typedef struct ph7_class ph7_class;
typedef unsigned short int sxu16; /* 16 bits(2 bytes) unsigned integer */
typedef int sxi32; /* 32 bits(4 bytes) integer */
typedef unsigned int sxu32; /* 32 bits(4 bytes) unsigned integer */
typedef int sxbool; /* boolean */
typedef long sxptr;
typedef unsigned long sxuptr;
typedef long sxlong;