Commit 6103e4b1 authored by Ove Kaaven's avatar Ove Kaaven Committed by Alexandre Julliard

Made hardware_event use win32-conformant parameters.

parent a20a59f0
...@@ -166,7 +166,7 @@ extern QMSG* QUEUE_FindMsg( MESSAGEQUEUE * msgQueue, HWND hwnd, ...@@ -166,7 +166,7 @@ extern QMSG* QUEUE_FindMsg( MESSAGEQUEUE * msgQueue, HWND hwnd,
extern void QUEUE_RemoveMsg( MESSAGEQUEUE * msgQueue, QMSG *qmsg ); extern void QUEUE_RemoveMsg( MESSAGEQUEUE * msgQueue, QMSG *qmsg );
extern SMSG *QUEUE_RemoveSMSG( MESSAGEQUEUE *queue, int list, SMSG *smsg ); extern SMSG *QUEUE_RemoveSMSG( MESSAGEQUEUE *queue, int list, SMSG *smsg );
extern BOOL QUEUE_AddSMSG( 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 ); int xPos, int yPos, DWORD time, DWORD extraInfo );
extern HQUEUE16 WINAPI InitThreadInput16( WORD unknown, WORD flags ); extern HQUEUE16 WINAPI InitThreadInput16( WORD unknown, WORD flags );
......
...@@ -1162,7 +1162,7 @@ static void QUEUE_WakeSomeone( UINT message ) ...@@ -1162,7 +1162,7 @@ static void QUEUE_WakeSomeone( UINT message )
* Add an event to the system message queue. * Add an event to the system message queue.
* Note: the position is relative to the desktop window. * 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 ) int xPos, int yPos, DWORD time, DWORD extraInfo )
{ {
MSG *msg; MSG *msg;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment