mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Include protection.
This commit is contained in:
parent
091e9d3f3d
commit
86d73f1577
1 changed files with 5 additions and 0 deletions
|
@ -29,6 +29,9 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#ifndef __gib_function_h
|
||||
#define __gib_function_h
|
||||
|
||||
typedef struct gib_function_s {
|
||||
struct dstring_s *name, *program;
|
||||
qboolean exported;
|
||||
|
@ -38,3 +41,5 @@ void GIB_Function_Define (const char *name, const char *program);
|
|||
gib_function_t *GIB_Function_Find (const char *name);
|
||||
void GIB_Function_Prepare_Args (cbuf_t *cbuf, cbuf_args_t *args);
|
||||
void GIB_Function_Execute (cbuf_t *cbuf, gib_function_t *func, cbuf_args_t *args);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue