home *** CD-ROM | disk | FTP | other *** search
/ Superpower (Alt) / SUPERPOWER.iso / q / util / mbq319 / scriplib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-01  |  389 b   |  22 lines

  1. // scriplib.h
  2.  
  3. #ifndef __CMDLIB__
  4. #include "cmdlib.h"
  5. #endif
  6.  
  7. #define    MAXTOKEN    128
  8.  
  9. extern    char    token[MAXTOKEN];
  10. extern    char    *scriptbuffer,*script_p,*scriptend_p;
  11. extern    int        grabbed;
  12. extern    int        scriptline;
  13. extern    boolean    endofscript;
  14.  
  15.  
  16. void LoadScriptFile (char *filename);
  17. void GetToken (boolean crossline);
  18. void UnGetToken (void);
  19. boolean TokenAvailable (void);
  20.  
  21.  
  22.