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.

31 lines
768 B

  1. #ifndef LSTABS_DEFINED
  2. #define LSTABS_DEFINED
  3. #include "lsdefs.h"
  4. #include "lsktab.h"
  5. /* ---------------------------------------------------------------------- */
  6. /* ---------------------------------------------------------------------- */
  7. typedef struct
  8. {
  9. enum lsktab lskt; /* Kind of tab */
  10. long ua; /* tab position */
  11. WCHAR wchTabLeader; /* character for tab leader */
  12. /* if 0, no leader is used*/
  13. WCHAR wchCharTab; /* Character for CharTab */
  14. } LSTBD;
  15. /* ---------------------------------------------------------------------- */
  16. typedef struct lstabs
  17. {
  18. long duaIncrementalTab; /* "Default" tab behavior */
  19. DWORD iTabUserDefMac;
  20. LSTBD* pTab;
  21. } LSTABS;
  22. #endif /* !LSTABS_DEFINED */