mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-28 06:32:44 +00:00
more protos in exec.h
This commit is contained in:
parent
3140f2122a
commit
ae639c8ba5
1 changed files with 8 additions and 0 deletions
8
exec.h
8
exec.h
|
@ -143,4 +143,12 @@ _MEM_VEC_FUN_RESIZE(qc_program, size_t, profile)
|
||||||
qc_program* prog_load(const char *filename);
|
qc_program* prog_load(const char *filename);
|
||||||
void prog_delete(qc_program *prog);
|
void prog_delete(qc_program *prog);
|
||||||
|
|
||||||
|
bool prog_exec(qc_program *prog, prog_function *func, size_t flags, long maxjumps);
|
||||||
|
|
||||||
|
char* prog_getstring(qc_program *prog, qcint str);
|
||||||
|
prog_def* prog_entfield(qc_program *prog, qcint off);
|
||||||
|
prog_def* prog_getdef(qc_program *prog, qcint off);
|
||||||
|
qcany* prog_getedict(qc_program *prog, qcint e);
|
||||||
|
qcint prog_tempstring(qc_program *prog, const char *_str);
|
||||||
|
|
||||||
#endif /* GMQCC_EXEC_HDR */
|
#endif /* GMQCC_EXEC_HDR */
|
||||||
|
|
Loading…
Reference in a new issue