windows-nt/Source/XPSP1/NT/windows/richedit/lsinc/lstabs.h
2020-09-26 16:20:57 +08:00

32 lines
737 B
C

#ifndef LSTABS_DEFINED
#define LSTABS_DEFINED
#include "lsdefs.h"
#include "lsktab.h"
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
typedef struct
{
enum lsktab lskt; /* Kind of tab */
long ua; /* tab position */
WCHAR wchTabLeader; /* character for tab leader */
/* if 0, no leader is used*/
WCHAR wchCharTab; /* Character for CharTab */
} LSTBD;
/* ---------------------------------------------------------------------- */
typedef struct lstabs
{
long duaIncrementalTab; /* "Default" tab behavior */
DWORD iTabUserDefMac;
LSTBD* pTab;
} LSTABS;
#endif /* !LSTABS_DEFINED */