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.

24 lines
460 B

  1. #ifndef __INCLUDE_HEIGHT
  2. #define __INCLUDE_HEIGHT
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. typedef struct tagBOXINFO
  8. {
  9. int size; // Absolute size.
  10. int xheight; // Absolute height to midline.
  11. int baseline; // Baseline in tablet coordinates.
  12. int midline; // Midline in tablet coordinates.
  13. } BOXINFO;
  14. void GetBoxinfo(BOXINFO * boxinfo, int iBox, LPGUIDE lpguide, HRC HRC);
  15. #ifdef __cplusplus
  16. };
  17. #endif
  18. #endif //__INCLUDE_HEIGHT