Leaked source code of windows server 2003
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
477 B

  1. #ifndef LSTXM_DEFINED
  2. #define LSTXM_DEFINED
  3. #include "lsdefs.h"
  4. #include "plstxm.h"
  5. /*igorzv** good explanation according text flow issue is needed here /
  6. /* A few words about the v-vector and the sign bit:
  7. *
  8. * dvDescent is positive downwards.
  9. * v is positive upwards during formatting.
  10. */
  11. struct lstxm
  12. {
  13. long dvAscent;
  14. long dvDescent;
  15. long dvMultiLineHeight;
  16. BOOL fMonospaced;
  17. };
  18. typedef struct lstxm LSTXM;
  19. #endif /* !LSTXM_DEFINED */