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.

41 lines
1.0 KiB

  1. #ifndef LSPAP_DEFINED
  2. #define LSPAP_DEFINED
  3. #include "lsdefs.h"
  4. #include "plspap.h"
  5. #include "lskjust.h"
  6. #include "lskalign.h"
  7. #include "lsbrjust.h"
  8. #include "lskeop.h"
  9. #include "lstflow.h"
  10. /* ---------------------------------------------------------------------- */
  11. struct lspap
  12. {
  13. LSCP cpFirst; /* 1st cp for this paragraph */
  14. LSCP cpFirstContent; /* 1st cp of "content" in the para */
  15. DWORD grpf; /* line services format flags (lsffi.h)*/
  16. long uaLeft; /* left boundary for line */
  17. long uaRightBreak; /* right boundary for break */
  18. long uaRightJustify; /* right boundary for justification */
  19. long duaIndent;
  20. long duaHyphenationZone;
  21. LSBREAKJUST lsbrj; /* Break/Justification behavior */
  22. LSKJUST lskj; /* Justification type */
  23. LSKALIGN lskal; /* Alignment type */
  24. long duaAutoDecimalTab;
  25. LSKEOP lskeop; /* kind of paragraph ending */
  26. LSTFLOW lstflow; /* Main text flow direction */
  27. };
  28. typedef struct lspap LSPAP;
  29. #endif /* !LSPAP_DEFINED */