X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=gmqcc.h;h=7bd1a9f49f1578b6dfde8005d2d303b2311b8116;hb=2e3d572b536f17d81cc8df6cf48ac442cd8c7741;hp=1ea2ceff8bb472286c8bc3982d1f785fdb4dcc9e;hpb=0330b082a2c88454fbf7426bc37fe1a748201d82;p=xonotic%2Fgmqcc.git diff --git a/gmqcc.h b/gmqcc.h index 1ea2cef..7bd1a9f 100644 --- a/gmqcc.h +++ b/gmqcc.h @@ -41,7 +41,7 @@ #endif #define GMQCC_VERSION_MAJOR 0 -#define GMQCC_VERSION_MINOR 1 +#define GMQCC_VERSION_MINOR 2 #define GMQCC_VERSION_PATCH 0 #define GMQCC_VERSION_BUILD(J,N,P) (((J)<<16)|((N)<<8)|(P)) #define GMQCC_VERSION \ @@ -196,6 +196,7 @@ void util_memory_d (void *, unsigned int, const char *); void *util_memory_r (void *, size_t, unsigned int, const char *); void util_meminfo (); +bool util_filexists (const char *); bool util_strupper (const char *); bool util_strdigit (const char *); bool util_strncmpexact (const char *, const char *, size_t); @@ -291,6 +292,7 @@ extern uint16_t type_storep_instr[TYPE_COUNT]; /* other useful lists */ extern uint16_t type_eq_instr[TYPE_COUNT]; extern uint16_t type_ne_instr[TYPE_COUNT]; +extern uint16_t type_not_instr[TYPE_COUNT]; typedef struct { uint32_t offset; /* Offset in file of where data begins */