windows-nt/Source/XPSP1/NT/sdktools/ztools/inc/parse.h
2020-09-26 16:20:57 +08:00

16 lines
469 B
C

/* parse.h - support tops-20 comnd jsys on MSDOS */
#include <setjmp.h>
/* flags in pair.flags. Not examined by tbLook */
#define PINVIS 0x4000 /* invisible in HELP, but recognized */
#define PABBREV 0x2000 /* abbreviation. Value is pointer */
/* parse support */
extern struct tbPairType *valParse;
extern jmp_buf ParseAC;
extern jmp_buf PromptAC;
extern char bufField[MAXARG];
#define SETPROMPT(p,b) setjmp(PromptAC);initParse(b,p);setjmp(ParseAC)