mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 20:20:43 +00:00
missed this too, bah!
This commit is contained in:
parent
f8e365553f
commit
e1f6830067
2 changed files with 10 additions and 0 deletions
|
@ -6,7 +6,11 @@ void (inputline_t il, integer width) InputLine_SetWidth = #0;
|
|||
void (inputline_t il) InputLine_Destroy = #0;
|
||||
void (inputline_t il) InputLine_Clear = #0;
|
||||
void (inputline_t il, integer ch) InputLine_Process = #0;
|
||||
#ifdef OLD_API
|
||||
void (inputline_t il, integer x, integer y, integer cursor) InputLine_Draw = #0;
|
||||
#else
|
||||
void (inputline_t il, integer cursor) InputLine_Draw = #0;
|
||||
#endif
|
||||
void (inputline_t il, string str) InputLine_SetText = #0;
|
||||
string (inputline_t il) InputLine_GetText = #0;
|
||||
|
||||
|
@ -42,7 +46,11 @@ string (inputline_t il) InputLine_GetText = #0;
|
|||
|
||||
-draw:(BOOL)cursor
|
||||
{
|
||||
#ifdef OLD_API
|
||||
InputLine_Draw (il, at.x, at.y, cursor);
|
||||
#else
|
||||
InputLine_Draw (il, cursor);
|
||||
#endif
|
||||
}
|
||||
|
||||
-setText:(string)text
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#include "system.h"
|
||||
|
||||
float time;
|
||||
|
||||
void (string s) precache_sound = #19;
|
||||
void (string s) precache_model = #20;
|
||||
void (entity client, string s) stuffcmd = #21;
|
||||
|
|
Loading…
Reference in a new issue