Include protection.

This commit is contained in:
Brian Koropoff 2003-01-03 04:12:27 +00:00
parent 091e9d3f3d
commit 86d73f1577
1 changed files with 5 additions and 0 deletions

View File

@ -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