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

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