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

This commit is contained in:
Christian Costa 2012-10-17 14:03:53 +02:00 committed by Alexandre Julliard
parent 06ce49c81b
commit 338dedef02
1 changed files with 5 additions and 0 deletions

View File

@ -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 );