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

Alexandre Julliard julliard at winehq.org
Thu Jan 20 12:41:20 CST 2011


Module: wine
Branch: master
Commit: f3fe497b4f300191d548b5121d85b436293e7e7e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f3fe497b4f300191d548b5121d85b436293e7e7e

Author: Eric Pouech <eric.pouech at orange.fr>
Date:   Wed Jan 19 22:34:35 2011 +0100

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

---

 dlls/kernel32/term.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/kernel32/term.c b/dlls/kernel32/term.c
index 8111f0b..a7e18ec 100644
--- a/dlls/kernel32/term.c
+++ b/dlls/kernel32/term.c
@@ -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




More information about the wine-cvs mailing list