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.

35 lines
549 B

  1. #ifndef LSEXPINF_DEFINED
  2. #define LSEXPINF_DEFINED
  3. #include "lsdefs.h"
  4. #include "exptype.h"
  5. #define lsexpinfInfinity 0x1FFFFF
  6. /* ------------------------------------------------------------------------ */
  7. struct lsexpinfo /* Expansion info */
  8. {
  9. long duMax;
  10. union
  11. {
  12. struct
  13. {
  14. long duMin;
  15. } AddInkContinuous;
  16. struct
  17. {
  18. DWORD cwidths;
  19. } AddInkDiscrete;
  20. } u;
  21. BYTE prior;
  22. BYTE fCanBeUsedForResidual;
  23. WORD pad;
  24. };
  25. typedef struct lsexpinfo LSEXPINFO;
  26. #endif /* !LSEXPINFO_DEFINED */