]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - gmqcc.h
storing generated values and returning them early if they exist - will error when...
[xonotic/gmqcc.git] / gmqcc.h
diff --git a/gmqcc.h b/gmqcc.h
index 7f7efce32c70468539996fdc225d016fdcf508ae..532065d9a668ef01f2f8969787d49ce4b69f9ae1 100644 (file)
--- a/gmqcc.h
+++ b/gmqcc.h
@@ -381,6 +381,9 @@ extern uint16_t type_store_instr[TYPE_COUNT];
  * are at a seperate place.
  */
 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];
 
 typedef struct {
     uint32_t offset;      /* Offset in file of where data begins  */
@@ -917,6 +920,7 @@ typedef struct qc_program_s {
     MEM_VECTOR_MAKE(char,                   strings);
     MEM_VECTOR_MAKE(qcint,                  globals);
     MEM_VECTOR_MAKE(qcint,                  entitydata);
+    MEM_VECTOR_MAKE(bool,                   entitypool);
 
     size_t tempstring_start;
     size_t tempstring_at;