Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef ORTHOGRAPHY_DATA
00016 #define ORTHOGRAPHY_DATA
00017
00018 #ifndef UINT32
00019 typedef unsigned int UINT32;
00020 #endif
00021
00022 #define START_RANGE_PAIR 0x0002 // Using "STX" to demarcate the beginning of a range pair
00023 #define END_OF_DATA 0x0000 // Using NULL to mark the end of a set
00024
00025
00026
00027
00028 class OrthographyData{
00029
00030 public:
00031
00032 const char *commonName;
00033 const char *nativeName;
00034 UINT32 key;
00035 UINT32 *values;
00036 const char *sampleCharacters;
00037 const char **sampleSentences;
00038
00039 };
00040
00041
00042 #endif