08-05-2008 05:16 AM
08-05-2008 05:56 AM
Hello Martin,
BOOL is not an C or C++ data type. The type BOOL is somewhere defined either with an macro like
#define BOOL unsigned int
or a typedef
typedef BOOL unsigned int;
You have to find out with the programmer which data type it is. I would expect that it is a int or unsigned int which is on the Windows I32 or U32.