X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=prvm_cmds.h;h=16785039b8bbffde3c020646ace109213c4798e1;hb=31c60f86f584447beac6b654e54587229f2c9496;hp=fdabb68db5e0e667dfa2e7391a0193df9726784e;hpb=a2535521709ba873592188925ed1c9c170eb662c;p=xonotic%2Fdarkplaces.git diff --git a/prvm_cmds.h b/prvm_cmds.h index fdabb68d..16785039 100644 --- a/prvm_cmds.h +++ b/prvm_cmds.h @@ -299,6 +299,17 @@ void VM_stov(void); void VM_strzone(void); void VM_strunzone(void); +// KrimZon - DP_QC_ENTITYDATA +void VM_numentityfields(void); +void VM_entityfieldname(void); +void VM_entityfieldtype(void); +void VM_getentityfieldstring(void); +void VM_putentityfieldstring(void); +// And declared these ones for VM_getentityfieldstring and VM_putentityfieldstring in prvm_cmds.c +// the function is from prvm_edict.c +char *PRVM_UglyValueString (etype_t type, prvm_eval_t *val); +qboolean PRVM_ED_ParseEpair(prvm_edict_t *ent, ddef_t *key, const char *s, qboolean parsebackslash); + // DRESK - String Length (not counting color codes) void VM_strlennocol(void); // DRESK - Decolorized String @@ -348,6 +359,7 @@ void VM_makevectors (void); void VM_vectorvectors (void); void VM_keynumtostring (void); +void VM_findkeysforcommand (void); void VM_stringtokeynum (void); void VM_cin_open( void ); @@ -412,3 +424,18 @@ void VM_SetTraceGlobals(const trace_t *trace); void VM_Cmd_Init(void); void VM_Cmd_Reset(void); + +void VM_uri_escape (void); +void VM_uri_unescape (void); +void VM_whichpack (void); + +void VM_etof (void); +void VM_uri_get (void); +void VM_netaddress_resolve (void); + +void VM_tokenize_console (void); +void VM_argv_start_index (void); +void VM_argv_end_index (void); + +void VM_buf_cvarlist(void); +void VM_cvar_description(void);