Christian Costa : krnl386.exe: Implement INT 33h function 15h.

Alexandre Julliard julliard at winehq.org
Wed Oct 17 14:32:28 CDT 2012


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

Author: Christian Costa <titan.costa at gmail.com>
Date:   Wed Oct 17 14:03:53 2012 +0200

krnl386.exe: Implement INT 33h function 15h.

---

 dlls/krnl386.exe16/int33.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/dlls/krnl386.exe16/int33.c b/dlls/krnl386.exe16/int33.c
index b3411a7..7226816 100644
--- a/dlls/krnl386.exe16/int33.c
+++ b/dlls/krnl386.exe16/int33.c
@@ -184,6 +184,11 @@ void WINAPI DOSVM_Int33Handler( CONTEXT *context )
         FIXME("Define screen region for update\n");
         break;
 
+    case 0x0015:
+        TRACE("Get mouse driver state and memory requirements\n");
+        SET_BX(context, sizeof(mouse_info));
+        break;
+
     case 0x0021:
         TRACE("Software reset\n");
         INT33_ResetMouse( context );




More information about the wine-cvs mailing list