winex11.drv: Indirection level fix.

This commit is contained in:
Andrew Talbot 2008-03-21 15:30:01 +00:00 committed by Alexandre Julliard
parent 2d08f90d76
commit 8789ed6f84
1 changed files with 2 additions and 2 deletions

View File

@ -982,7 +982,7 @@ int X11DRV_AttachEventQueueToTablet(HWND hOwner)
/***********************************************************************
* X11DRV_GetCurrentPacket (X11DRV.@)
*/
int X11DRV_GetCurrentPacket(LPWTPACKET *packet)
int X11DRV_GetCurrentPacket(LPWTPACKET packet)
{
memcpy(packet,&gMsgPacket,sizeof(WTPACKET));
return 1;
@ -1435,7 +1435,7 @@ int X11DRV_AttachEventQueueToTablet(HWND hOwner)
/***********************************************************************
* GetCurrentPacket (X11DRV.@)
*/
int X11DRV_GetCurrentPacket(LPWTPACKET *packet)
int X11DRV_GetCurrentPacket(LPWTPACKET packet)
{
return 0;
}