mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Fixed an incorrect builtin definition.
This commit is contained in:
parent
cc3f98e99c
commit
fe5a62b75a
2 changed files with 8 additions and 0 deletions
|
@ -3,5 +3,9 @@
|
|||
|
||||
@extern void (string name, void (integer argc, string [] argv) func) GIB_Builtin_Add;
|
||||
@extern integer (string value) GIB_Return;
|
||||
@extern integer (void) GIB_Handle_Class_New = #0;
|
||||
@extern integer (void [] data, integer class) GIB_Handle_New = #0;
|
||||
@extern void [] (integer handle, integer class) GIB_Handle_Get = #0;
|
||||
@extern void (integer handle, integer class) GIB_Handle_Free = #0;
|
||||
|
||||
#endif//__ruamoko_gib_h
|
||||
|
|
|
@ -2,3 +2,7 @@
|
|||
|
||||
void (string name, void (integer argc, string [] argv) func) GIB_Builtin_Add = #0;
|
||||
integer (string value) GIB_Return = #0;
|
||||
integer (void) GIB_Handle_Class_New = #0;
|
||||
integer (void [] data, integer class) GIB_Handle_New = #0;
|
||||
void [] (integer handle, integer class) GIB_Handle_Get = #0;
|
||||
void (integer handle, integer class) GIB_Handle_Free = #0;
|
||||
|
|
Loading…
Reference in a new issue