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
6103e4b1
Commit
6103e4b1
authored
Aug 07, 1999
by
Ove Kaaven
Committed by
Alexandre Julliard
Aug 07, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made hardware_event use win32-conformant parameters.
parent
a20a59f0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
queue.h
include/queue.h
+1
-1
queue.c
windows/queue.c
+1
-1
No files found.
include/queue.h
View file @
6103e4b1
...
...
@@ -166,7 +166,7 @@ extern QMSG* QUEUE_FindMsg( MESSAGEQUEUE * msgQueue, HWND hwnd,
extern
void
QUEUE_RemoveMsg
(
MESSAGEQUEUE
*
msgQueue
,
QMSG
*
qmsg
);
extern
SMSG
*
QUEUE_RemoveSMSG
(
MESSAGEQUEUE
*
queue
,
int
list
,
SMSG
*
smsg
);
extern
BOOL
QUEUE_AddSMSG
(
MESSAGEQUEUE
*
queue
,
int
list
,
SMSG
*
smsg
);
extern
void
hardware_event
(
WORD
message
,
WORD
wParam
,
LONG
lParam
,
extern
void
hardware_event
(
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
,
int
xPos
,
int
yPos
,
DWORD
time
,
DWORD
extraInfo
);
extern
HQUEUE16
WINAPI
InitThreadInput16
(
WORD
unknown
,
WORD
flags
);
...
...
windows/queue.c
View file @
6103e4b1
...
...
@@ -1162,7 +1162,7 @@ static void QUEUE_WakeSomeone( UINT message )
* Add an event to the system message queue.
* Note: the position is relative to the desktop window.
*/
void
hardware_event
(
WORD
message
,
WORD
wParam
,
LONG
lParam
,
void
hardware_event
(
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
,
int
xPos
,
int
yPos
,
DWORD
time
,
DWORD
extraInfo
)
{
MSG
*
msg
;
...
...
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