mirror of
https://github.com/shawns-valve/halflife.git
synced 2024-11-22 04:21:30 +00:00
34 lines
665 B
C
34 lines
665 B
C
|
/***
|
||
|
*
|
||
|
* Copyright (c) 1996-2002, Valve LLC. All rights reserved.
|
||
|
*
|
||
|
* This product contains software technology licensed from Id
|
||
|
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc.
|
||
|
* All Rights Reserved.
|
||
|
*
|
||
|
****/
|
||
|
|
||
|
// scriplib.h
|
||
|
|
||
|
#ifndef __CMDLIB__
|
||
|
#include "cmdlib.h"
|
||
|
#endif
|
||
|
|
||
|
#define MAXTOKEN 512
|
||
|
|
||
|
extern char token[MAXTOKEN];
|
||
|
extern char *scriptbuffer,*script_p,*scriptend_p;
|
||
|
extern int grabbed;
|
||
|
extern int scriptline;
|
||
|
extern qboolean endofscript;
|
||
|
|
||
|
|
||
|
void LoadScriptFile (char *filename);
|
||
|
void ParseFromMemory (char *buffer, int size);
|
||
|
|
||
|
qboolean GetToken (qboolean crossline);
|
||
|
void UnGetToken (void);
|
||
|
qboolean TokenAvailable (void);
|
||
|
|
||
|
|