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.
21 lines
542 B
21 lines
542 B
#ifndef LSCALTBD_DEFINED
|
|
#define LSCALTBD_DEFINED
|
|
|
|
#include "lsdefs.h"
|
|
#include "lsktab.h"
|
|
|
|
|
|
typedef struct
|
|
{
|
|
enum lsktab lskt; /* Kind of tab */
|
|
long ur; /* Offset of tab position */
|
|
WCHAR wchTabLeader; /* character for tab leader */
|
|
/* if 0, no leader is used*/
|
|
WCHAR wchCharTab; /* character for tab allignment for the special kind of tab stop */
|
|
BYTE fDefault; /* default tab position */
|
|
BYTE fHangingTab; /* hanging tab */
|
|
} LSCALTBD;
|
|
|
|
|
|
#endif /* !LSCALTBD_DEFINED */
|
|
|