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.

30 lines
816 B

  1. #ifndef LSSTINFO_DEFINED
  2. #define LSSTINFO_DEFINED
  3. #include "lsdefs.h"
  4. #include "plsstinf.h"
  5. /*
  6. * all strikethrough offsets are relative to the baseline and positive upwards (filled page direction),
  7. * so normally dvpLowerStrikethroughOffset > 0 and if cNumberOfLines == 2
  8. * dvpLowerStrikethroughOffset < dvpUpperStrikethroughOffset
  9. */
  10. struct lsstinfo
  11. {
  12. UINT kstbase; /* base kind of strikethrough */
  13. DWORD cNumberOfLines; /* number of lines: possible values 1,2*/
  14. long dvpLowerStrikethroughOffset ; /* if NumberOfLines != 2 only data for
  15. lower line should be filled in */
  16. long dvpLowerStrikethroughSize;
  17. long dvpUpperStrikethroughOffset;
  18. long dvpUpperStrikethroughSize;
  19. };
  20. typedef struct lsstinfo LSSTINFO;
  21. #endif /* !LSSTINFO_DEFINED */