mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
a590700249
move gib.h to include/QF fix up the refs to gib.h
38 lines
580 B
C
38 lines
580 B
C
typedef int (*gib_func_t) (void);
|
|
|
|
typedef struct gib_var_s
|
|
{
|
|
char *key;
|
|
char *value;
|
|
struct gib_var_s *next;
|
|
} gib_var_t;
|
|
|
|
|
|
typedef struct gib_sub_s
|
|
{
|
|
char *name;
|
|
char *code;
|
|
gib_var_t *vars;
|
|
struct gib_sub_s *next;
|
|
} gib_sub_t;
|
|
|
|
typedef struct gib_module_s
|
|
{
|
|
char *name;
|
|
gib_sub_t *subs;
|
|
gib_var_t *vars;
|
|
struct gib_module_s *next;
|
|
} gib_module_t;
|
|
|
|
typedef struct gib_inst_s
|
|
{
|
|
char *name;
|
|
gib_func_t func;
|
|
struct gib_inst_s *next;
|
|
} gib_inst_t;
|
|
|
|
void GIB_Init (void);
|
|
void GIB_Gib_f (void);
|
|
void GIB_Load_f (void);
|
|
void GIB_Stats_f (void);
|
|
|