mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 09:11:55 +00:00
b5590dd5d9
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@144 67975925-1194-0748-b3d5-c16f83f1a3a1
33 lines
693 B
C
33 lines
693 B
C
/***
|
|
*
|
|
* Copyright (c) 1998, 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);
|
|
|
|
|