[1/3] krnl386.exe16: Fix signature of DOSVM_Int16ReadChar

Frédéric Delanoy frederic.delanoy at gmail.com
Tue Dec 10 04:52:36 CST 2013


In order to match declaration found in dosexe.h header
---
 dlls/krnl386.exe16/int16.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/krnl386.exe16/int16.c b/dlls/krnl386.exe16/int16.c
index f567ee7..5d84a0b 100644
--- a/dlls/krnl386.exe16/int16.c
+++ b/dlls/krnl386.exe16/int16.c
@@ -160,7 +160,7 @@ void WINAPI DOSVM_Int16Handler( CONTEXT *context )
  * Return value will always be TRUE and returned keystroke will be
  * removed from buffer.
  */
-int DOSVM_Int16ReadChar(BYTE *ascii, BYTE *scan, CONTEXT *waitctx)
+BOOL DOSVM_Int16ReadChar(BYTE *ascii, BYTE *scan, CONTEXT *waitctx)
 {
     BIOSDATA *data = DOSVM_BiosData();
     WORD CurOfs = data->NextKbdCharPtr;
-- 
1.8.5




More information about the wine-patches mailing list