Commit 5d038523 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

winex11.drv: Assign to structs instead of using memcpy.

parent 7b380e0a
...@@ -2900,7 +2900,7 @@ static Atom X11DRV_SelectionRequest_MULTIPLE( HWND hWnd, XSelectionRequestEvent ...@@ -2900,7 +2900,7 @@ static Atom X11DRV_SelectionRequest_MULTIPLE( HWND hWnd, XSelectionRequestEvent
} }
/* Set up an XSelectionRequestEvent for this (target,property) pair */ /* Set up an XSelectionRequestEvent for this (target,property) pair */
memcpy( &event, pevent, sizeof(XSelectionRequestEvent) ); event = *pevent;
event.target = targetPropList[i]; event.target = targetPropList[i];
event.property = targetPropList[i+1]; event.property = targetPropList[i+1];
......
...@@ -984,7 +984,7 @@ int X11DRV_AttachEventQueueToTablet(HWND hOwner) ...@@ -984,7 +984,7 @@ int X11DRV_AttachEventQueueToTablet(HWND hOwner)
*/ */
int X11DRV_GetCurrentPacket(LPWTPACKET packet) int X11DRV_GetCurrentPacket(LPWTPACKET packet)
{ {
memcpy(packet,&gMsgPacket,sizeof(WTPACKET)); *packet = gMsgPacket;
return 1; return 1;
} }
......
...@@ -806,7 +806,7 @@ static BOOL UploadGlyph(X11DRV_PDEVICE *physDev, int glyph, AA_Type format) ...@@ -806,7 +806,7 @@ static BOOL UploadGlyph(X11DRV_PDEVICE *physDev, int glyph, AA_Type format)
formatEntry->bitmaps[glyph] = buf; formatEntry->bitmaps[glyph] = buf;
} }
memcpy(&formatEntry->gis[glyph], &gi, sizeof(gi)); formatEntry->gis[glyph] = gi;
return TRUE; return TRUE;
} }
......
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