Hi
I added #define _MSC_VER 1300 to the top of the header before it checked which compilier. Then it jumps into the microsoft types, where unsigned __int8 is not known because I get
"aardvark.h"(81,27) syntax error; found 'identifier' expecting ';'.
#ifndef _MSC_VER/* C99-compliant compilers (GCC) */#include <stdint.h>typedef uint8_t u08;:
: typedef int64_t s64;
#else/* Microsoft compilers (Visual C++) */typedef unsigned __int8 u08;:
: typedef signed __int64 s64;
#endif /* __MSC_VER */
Is there a way microsoft types are known? (i.e. there will not be complaints for unsigned __int8)
Your input is greatly appreciated.
Thanks
Matt