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
d0018bd5
Commit
d0018bd5
authored
Jun 08, 2000
by
Turchanov Sergei
Committed by
Alexandre Julliard
Jun 08, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DGA compile fix.
parent
be4ccc7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
event.c
windows/x11drv/event.c
+3
-3
No files found.
windows/x11drv/event.c
View file @
d0018bd5
...
...
@@ -1919,7 +1919,7 @@ void X11DRV_EVENT_SetDGAStatus(HWND hwnd, int event_base)
/* DGA2 event handlers */
static
void
EVENT_DGAMotionEvent
(
XDGAMotionEvent
*
event
)
{
MOUSE_SendEvent
(
MOUSEEVENTF_MOVE
,
X11DRV_
MOUSE_SendEvent
(
MOUSEEVENTF_MOVE
,
event
->
dx
,
event
->
dy
,
X11DRV_EVENT_XStateToKeyState
(
event
->
state
),
event
->
time
,
DGAhwnd
);
...
...
@@ -1950,7 +1950,7 @@ static void EVENT_DGAButtonPressEvent( XDGAButtonEvent *event )
break
;
}
MOUSE_SendEvent
(
statusCodes
[
buttonNum
],
0
,
0
,
keystate
,
event
->
time
,
DGAhwnd
);
X11DRV_
MOUSE_SendEvent
(
statusCodes
[
buttonNum
],
0
,
0
,
keystate
,
event
->
time
,
DGAhwnd
);
}
static
void
EVENT_DGAButtonReleaseEvent
(
XDGAButtonEvent
*
event
)
...
...
@@ -1978,7 +1978,7 @@ static void EVENT_DGAButtonReleaseEvent( XDGAButtonEvent *event )
break
;
}
MOUSE_SendEvent
(
statusCodes
[
buttonNum
],
0
,
0
,
keystate
,
event
->
time
,
DGAhwnd
);
X11DRV_
MOUSE_SendEvent
(
statusCodes
[
buttonNum
],
0
,
0
,
keystate
,
event
->
time
,
DGAhwnd
);
}
#endif
...
...
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