32 typedef unsigned char bool_t;
34 #if __STDC_VERSION__ >= 199901L 36 #elif defined(__GNUC__) || defined(__GNUG__) 37 typedef __INT8_TYPE__ int8_t;
38 typedef __UINT8_TYPE__ uint8_t;
39 typedef __INT16_TYPE__ int16_t;
40 typedef __UINT16_TYPE__ uint16_t;
41 typedef __INT32_TYPE__ int32_t;
42 typedef __UINT32_TYPE__ uint32_t;
44 typedef signed char int8_t;
45 typedef unsigned char uint8_t;
46 typedef signed short int16_t;
47 typedef unsigned short uint16_t;
48 typedef signed int int32_t;
49 typedef unsigned int uint32_t;
55 typedef uint32_t size_t;
73 #define GOS_NEED_X_THREADS TRUE 74 #define GOS_NEED_X_HEAP TRUE 76 #include "gos_x_threads.h" 77 #include "gos_x_heap.h" void gfxExit(void)
Exit the GFX application.
void gfxHalt(const char *msg)
Halt the GFX application due to an error.