kernel32: Fix prototype when no curses dev package is present.
This commit is contained in:
parent
52a1065f70
commit
f3fe497b4f
|
@ -365,5 +365,5 @@ int TERM_FillInputRecord(const char* in, size_t len, INPUT_RECORD* ir)
|
||||||
#else
|
#else
|
||||||
BOOL TERM_Init(void) {return FALSE;}
|
BOOL TERM_Init(void) {return FALSE;}
|
||||||
BOOL TERM_Exit(void) {return FALSE;}
|
BOOL TERM_Exit(void) {return FALSE;}
|
||||||
int TERM_FillInputRecord(const char* in, INPUT_RECORD* ir) {return -1;}
|
int TERM_FillInputRecord(const char* in, size_t len, INPUT_RECORD* ir) {return -1;}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue