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.
29 lines
871 B
29 lines
871 B
#ifndef LSTXTTAB_DEFINED
|
|
#define LSTXTTAB_DEFINED
|
|
|
|
#include "lsidefs.h"
|
|
#include "lsgrchnk.h"
|
|
#include "lsdevice.h"
|
|
#include "pdobj.h"
|
|
|
|
#define idobjOutside 0xFFFFFFFF
|
|
|
|
|
|
LSERR SetTabLeader(PDOBJ, /* IN: Tab dobj */
|
|
WCHAR); /* IN: wchTabLeader */
|
|
|
|
LSERR LsGetDecimalPoint(
|
|
const LSGRCHNK*, /* IN: group chunk of tab-to-tab text */
|
|
enum lsdevice, /* IN: lsdevice */
|
|
DWORD*, /* OUT: index of DObj with decimal */
|
|
long*); /* OUT: duToDecimalPoint */
|
|
|
|
LSERR LsGetCharTab(
|
|
const LSGRCHNK*, /* IN: group chunk of tab-to-tab text */
|
|
WCHAR wchCharTab, /* IN: Character for CharTab */
|
|
enum lsdevice, /* IN: lsdevice */
|
|
DWORD*, /* OUT: index of DObj with Character */
|
|
long*); /* OUT: duToCharacter */
|
|
|
|
#endif /* !LSTXTTAB_DEFINED */
|
|
|