Skip to content
Snippets Groups Projects
Commit 4698dc56 authored by Ulrich Weigand's avatar Ulrich Weigand Committed by Alexandre Julliard
Browse files

Added UserRepaintDisable16().

parent a11de67b
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@ WORD WINAPI DISPLAY_Inquire(LPCURSORINFO lpCursorInfo);
VOID WINAPI DISPLAY_SetCursor( struct tagCURSORICONINFO *lpCursor );
VOID WINAPI DISPLAY_MoveCursor( WORD wAbsX, WORD wAbsY );
VOID WINAPI DISPLAY_CheckCursor();
VOID WINAPI UserRepaintDisable16( BOOL16 bDisable );
#endif /* __WINE_DISPLAY_H */
......@@ -26,6 +26,7 @@
#include "keyboard.h"
#include "mouse.h"
#include "input.h"
#include "display.h"
#include "miscemu.h"
#include "options.h"
#include "process.h"
......@@ -268,6 +269,9 @@ BOOL WINAPI MAIN_UserInit(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserve
/* Initialize mouse driver */
MOUSE_Enable( mouse_event );
/* Start processing X events */
UserRepaintDisable16( FALSE );
return TRUE;
}
......
......@@ -9,6 +9,7 @@
#include "display.h"
#include "mouse.h"
#include "windef.h"
#include "message.h"
#include "wine/winuser16.h"
DEFAULT_DEBUG_CHANNEL(cursor)
......@@ -53,5 +54,6 @@ VOID WINAPI DISPLAY_CheckCursor()
*/
VOID WINAPI UserRepaintDisable16( BOOL16 disable )
{
TRACE( cursor, "(%d): stub\n", disable );
EVENT_Driver->pUserRepaintDisable( disable );
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment