Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
591 B

  1. // map.h
  2. #ifndef MAP_H
  3. #define MAP_H
  4. #define BASE_NORMAL 0x00 // kanji, kana, numbers, etc
  5. #define BASE_QUOTE 0x01 // upper punctuation, etc
  6. #define BASE_DASH 0x02 // middle punctuation, etc
  7. #define BASE_DESCENDER 0x03 // gy, anything that descends.
  8. #define BASE_THIRD 0x04 // something that starts a third way up.
  9. #define XHEIGHT_NORMAL 0x00 // lower-case, small kana, etc
  10. #define XHEIGHT_KANJI 0x10 // upper-case, kana, kanji, numbers, etc
  11. #define XHEIGHT_PUNC 0x20 // comma, quote, etc
  12. #define XHEIGHT_DASH 0x30 // dash, period, etc
  13. #endif // MAP_H