]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - prvm_cmds.h
Don't duplicate the entity relinking when using CSQC.
[xonotic/darkplaces.git] / prvm_cmds.h
index e21a393f6e0860b0a5a3e8b8a6660719ad2028e3..0120975805c24be28016c5a7c3848b84c2a808b5 100644 (file)
@@ -217,11 +217,15 @@ float     getserverlistindexforkey(string key)
 // init code
 void PR_Cmd_Init(void);
 
-// builtins and other general functions
-
+// general functions
 void VM_CheckEmptyString (prvm_prog_t *prog, const char *s);
 void VM_VarString(prvm_prog_t *prog, int first, char *out, int outlength);
+prvm_stringbuffer_t *BufStr_FindCreateReplace (prvm_prog_t *prog, int bufindex, int flags, const char *format);
+void BufStr_Set(prvm_prog_t *prog, prvm_stringbuffer_t *stringbuffer, int strindex, const char *str);
+void BufStr_Del(prvm_prog_t *prog, prvm_stringbuffer_t *stringbuffer);
+void BufStr_Flush(prvm_prog_t *prog);
 
+// builtins
 void VM_checkextension (prvm_prog_t *prog);
 void VM_error (prvm_prog_t *prog);
 void VM_objerror (prvm_prog_t *prog);
@@ -484,4 +488,6 @@ void VM_physics_enable(prvm_prog_t *prog);
 void VM_physics_addforce(prvm_prog_t *prog);
 void VM_physics_addtorque(prvm_prog_t *prog);
 
+void VM_coverage(prvm_prog_t *prog);
+
 #endif