Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4698dc56
Commit
4698dc56
authored
May 22, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
May 22, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added UserRepaintDisable16().
parent
a11de67b
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
display.h
include/display.h
+1
-0
main.c
loader/main.c
+4
-0
display.c
windows/display.c
+3
-1
No files found.
include/display.h
View file @
4698dc56
...
...
@@ -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 */
loader/main.c
View file @
4698dc56
...
...
@@ -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
;
}
...
...
windows/display.c
View file @
4698dc56
...
...
@@ -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
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment