C
#define XCHAR char
Overview
This macro sets the data type for the strings and characters. There are three types used for XCHAR and the type is selected by adding one of the macros in GraphicsConfig.h.
In GraphicsConfig.h |
XCHAR |
Description |
#define USE_MULTIBYTECHAR |
#define XCHAR unsigned short |
Use multibyte characters (0-2^16 range). |
#define USE_UNSIGNED_XCHAR |
#define XCHAR unsigned char |
Use unsigned char (0-255 range). |
none of the two defined |
#define XCHAR char |
Use signed char (0-127 range). |