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.
17 lines
500 B
17 lines
500 B
#ifndef STOPRES_DEFINED
|
|
#define STOPRES_DEFINED
|
|
|
|
|
|
enum stopres
|
|
{
|
|
stoprEndPara, /* reached defined para end (from LSPAP) */
|
|
stoprAltEndPara, /* reached defined alt para end (LSPAP) */
|
|
stoprSoftCR, /* reached Soft CR (from LSTXTCFG) */
|
|
stoprEndColumn, /* reached end column character */
|
|
stoprEndSection, /* reached end section character */
|
|
stoprEndPage, /* reached end page character */
|
|
};
|
|
|
|
typedef enum stopres STOPRES;
|
|
|
|
#endif /* !FMTRES_DEFINED */
|