mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Guard scriptfile.h with an #ifndef sentinel.
git-svn-id: https://svn.eduke32.com/eduke32@2548 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
e74f8cada1
commit
b7495ef5bd
1 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
|
||||||
|
#ifndef BUILD_SCRIPTFILE_H_
|
||||||
|
#define BUILD_SCRIPTFILE_H_
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
char *textbuf;
|
char *textbuf;
|
||||||
uint32_t textlength;
|
uint32_t textlength;
|
||||||
|
@ -25,3 +29,5 @@ int32_t scriptfile_eof(scriptfile *sf);
|
||||||
int32_t scriptfile_getsymbolvalue(char *name, int32_t *val);
|
int32_t scriptfile_getsymbolvalue(char *name, int32_t *val);
|
||||||
int32_t scriptfile_addsymbolvalue(char *name, int32_t val);
|
int32_t scriptfile_addsymbolvalue(char *name, int32_t val);
|
||||||
void scriptfile_clearsymbols(void);
|
void scriptfile_clearsymbols(void);
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue