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
cf4a781e
Commit
cf4a781e
authored
May 22, 2022
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
May 25, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Define ControlMask when not available.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
parent
4c3cc858
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
20 deletions
+12
-20
bitblt.c
dlls/winex11.drv/bitblt.c
+0
-2
event.c
dlls/winex11.drv/event.c
+0
-6
keyboard.c
dlls/winex11.drv/keyboard.c
+4
-3
mouse.c
dlls/winex11.drv/mouse.c
+1
-3
window.c
dlls/winex11.drv/window.c
+3
-3
x11drv.h
dlls/winex11.drv/x11drv.h
+3
-0
x11drv_main.c
dlls/winex11.drv/x11drv_main.c
+1
-3
No files found.
dlls/winex11.drv/bitblt.c
View file @
cf4a781e
...
...
@@ -46,8 +46,6 @@
# endif
#endif
#include "windef.h"
#include "winbase.h"
#include "x11drv.h"
#include "winternl.h"
#include "wine/debug.h"
...
...
dlls/winex11.drv/event.c
View file @
cf4a781e
...
...
@@ -39,13 +39,7 @@
#include <stdarg.h>
#include <string.h>
#include "windef.h"
#include "winbase.h"
#include "x11drv.h"
/* avoid conflict with field names in included win32 headers */
#undef Status
#include "shlobj.h"
/* DROPFILES */
#include "shellapi.h"
...
...
dlls/winex11.drv/keyboard.c
View file @
cf4a781e
...
...
@@ -44,14 +44,13 @@
#define NONAMELESSUNION
#include "
windef
.h"
#include "winbase.h"
#include "
x11drv
.h"
#include "wingdi.h"
#include "winuser.h"
#include "winreg.h"
#include "winnls.h"
#include "ime.h"
#include "x11drv.h"
#include "wine/server.h"
#include "wine/debug.h"
...
...
@@ -64,6 +63,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
keyboard
);
WINE_DECLARE_DEBUG_CHANNEL
(
key
);
static
const
unsigned
int
ControlMask
=
1
<<
2
;
static
int
min_keycode
,
max_keycode
,
keysyms_per_keycode
;
static
KeySym
*
key_mapping
;
static
WORD
keyc2vkey
[
256
],
keyc2scan
[
256
];
...
...
dlls/winex11.drv/mouse.c
View file @
cf4a781e
...
...
@@ -50,11 +50,9 @@ MAKE_FUNCPTR(XcursorLibraryLoadCursor);
#define NONAMELESSUNION
#define OEMRESOURCE
#include "windef.h"
#include "winbase.h"
#include "winreg.h"
#include "x11drv.h"
#include "winreg.h"
#include "wine/server.h"
#include "wine/debug.h"
...
...
dlls/winex11.drv/window.c
View file @
cf4a781e
...
...
@@ -43,14 +43,14 @@
/* avoid conflict with field names in included win32 headers */
#undef Status
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "windef.h"
#include "
winbase
.h"
#include "
x11drv
.h"
#include "wingdi.h"
#include "winuser.h"
#include "x11drv.h"
#include "wine/debug.h"
#include "wine/server.h"
#include "mwm.h"
...
...
dlls/winex11.drv/x11drv.h
View file @
cf4a781e
...
...
@@ -57,6 +57,9 @@
#undef Status
/* avoid conflict with wintrnl.h */
typedef
int
Status
;
/* avoid conflict with processthreadsapi.h */
#undef ControlMask
#include "windef.h"
#include "winbase.h"
#include "ntgdi.h"
...
...
dlls/winex11.drv/x11drv_main.c
View file @
cf4a781e
...
...
@@ -45,14 +45,12 @@
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "windef.h"
#include "winbase.h"
#include "winreg.h"
#define VK_NO_PROTOTYPES
#define WINE_VK_HOST
#include "x11drv.h"
#include "winreg.h"
#include "xcomposite.h"
#include "wine/server.h"
#include "wine/debug.h"
...
...
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