Portability fixes.
This commit is contained in:
parent
0e04023b91
commit
1bacc584e3
|
@ -62,6 +62,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "wine/port.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "wine/port.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#ifdef HAVE_UNISTD_H
|
#ifdef HAVE_UNISTD_H
|
||||||
|
@ -195,7 +196,7 @@ int X11DRV_XDND_Event(HWND hWnd, XClientMessageEvent *event)
|
||||||
X11DRV_XDND_FreeDragDropOp();
|
X11DRV_XDND_FreeDragDropOp();
|
||||||
|
|
||||||
/* Tell the target we are finished. */
|
/* Tell the target we are finished. */
|
||||||
bzero(&e, sizeof(e));
|
memset(&e, 0, sizeof(e));
|
||||||
e.type = ClientMessage;
|
e.type = ClientMessage;
|
||||||
e.display = event->display;
|
e.display = event->display;
|
||||||
e.window = event->data.l[0];
|
e.window = event->data.l[0];
|
||||||
|
|
Loading…
Reference in New Issue