#ifndef __stdbool_h__
#define __stdbool_h__
// For compatibility with SDK. Boo.
typedef unsigned char bool;
#define BOOL bool
#define true (1)
#define false (0)
#define TRUE true
#define FALSE false
#endif