Leaked source code of windows server 2003
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.
 
 
 
 
 
 

15 lines
484 B

/* 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)