home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / sharewar / quake106 / utils / common / scriplib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-12  |  375 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    qboolean    endofscript;
  14.  
  15.  
  16. void LoadScriptFile (char *filename);
  17. qboolean GetToken (qboolean crossline);
  18. void UnGetToken (void);
  19. qboolean TokenAvailable (void);
  20.  
  21.  
  22.