winex11.drv: Indirection level fix.
This commit is contained in:
parent
2d08f90d76
commit
8789ed6f84
|
@ -982,7 +982,7 @@ int X11DRV_AttachEventQueueToTablet(HWND hOwner)
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* X11DRV_GetCurrentPacket (X11DRV.@)
|
* X11DRV_GetCurrentPacket (X11DRV.@)
|
||||||
*/
|
*/
|
||||||
int X11DRV_GetCurrentPacket(LPWTPACKET *packet)
|
int X11DRV_GetCurrentPacket(LPWTPACKET packet)
|
||||||
{
|
{
|
||||||
memcpy(packet,&gMsgPacket,sizeof(WTPACKET));
|
memcpy(packet,&gMsgPacket,sizeof(WTPACKET));
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -1435,7 +1435,7 @@ int X11DRV_AttachEventQueueToTablet(HWND hOwner)
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* GetCurrentPacket (X11DRV.@)
|
* GetCurrentPacket (X11DRV.@)
|
||||||
*/
|
*/
|
||||||
int X11DRV_GetCurrentPacket(LPWTPACKET *packet)
|
int X11DRV_GetCurrentPacket(LPWTPACKET packet)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue