]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - progs.h
added loadsize variable set by COM_LoadFile
[xonotic/darkplaces.git] / progs.h
diff --git a/progs.h b/progs.h
index bd8eada0445a1e8d78fb4894662fcfebeb0e4914..a6603d5d02337c58b139ffa6831036665c41eb4a 100644 (file)
--- a/progs.h
+++ b/progs.h
@@ -94,6 +94,10 @@ extern int eval_punchvector;
 
 #define GETEDICTFIELDVALUE(ed, fieldoffset) (fieldoffset ? (eval_t*)((char*)&ed->v + fieldoffset) : NULL)
 
+
+extern dfunction_t *SV_PlayerPhysicsQC;
+extern dfunction_t *EndFrameQC;
+
 //============================================================================
 
 extern dprograms_t             *progs;
@@ -124,10 +128,10 @@ char      *ED_NewString (char *string);
 // returns a copy of the string allocated from the server's string heap
 
 void ED_Print (edict_t *ed);
-void ED_Write (FILE *f, edict_t *ed);
+void ED_Write (QFile *f, edict_t *ed);
 char *ED_ParseEdict (char *data, edict_t *ent);
 
-void ED_WriteGlobals (FILE *f);
+void ED_WriteGlobals (QFile *f);
 void ED_ParseGlobals (char *data);
 
 void ED_LoadFromFile (char *data);