missed this too, bah!

This commit is contained in:
Bill Currie 2002-08-16 22:00:54 +00:00
parent f8e365553f
commit e1f6830067
2 changed files with 10 additions and 0 deletions

View file

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

View file

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