kernel32: Fix prototype when no curses dev package is present.

This commit is contained in:
Eric Pouech 2011-01-19 22:34:35 +01:00 committed by Alexandre Julliard
parent 52a1065f70
commit f3fe497b4f
1 changed files with 1 additions and 1 deletions

View File

@ -365,5 +365,5 @@ int TERM_FillInputRecord(const char* in, size_t len, INPUT_RECORD* ir)
#else
BOOL TERM_Init(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