#ifndef ONI_H #error Do not include this file directly, include Oni/Oni.h instead! #endif #ifndef STDTYPES_H #define STDTYPES_H #define UUmType(t) typedef struct t t; typedef unsigned char UUtBool; #define UUcTrue ((UUtBool) 1) #define UUcFalse ((UUtBool) 0) typedef unsigned short UUtError; #define UUcError_None ((UUtError) 0) typedef unsigned char UUtUns8; typedef unsigned short UUtUns16; typedef unsigned int UUtUns32; typedef char UUtInt8; typedef short UUtInt16; typedef int UUtInt32; typedef unsigned char onibool; #endif