mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
8 lines
453 B
C++
8 lines
453 B
C++
struct _inputline_t = {}; // opaque type :)
|
|
typedef _inputline_t [] inputline_t;
|
|
inputline_t (integer lines, integer size, integer prompt) InputLine_Create = #0;
|
|
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;
|
|
void (inputline_t il, integer x, integer y, integer cursor) InputLine_Draw = #0;
|