Portability fixes.

This commit is contained in:
Alexandre Julliard 2003-12-04 05:11:56 +00:00
parent 0e04023b91
commit 1bacc584e3
2 changed files with 3 additions and 1 deletions

View File

@ -62,6 +62,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <string.h>
#include <stdarg.h>

View File

@ -19,6 +19,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <string.h>
#ifdef HAVE_UNISTD_H
@ -195,7 +196,7 @@ int X11DRV_XDND_Event(HWND hWnd, XClientMessageEvent *event)
X11DRV_XDND_FreeDragDropOp();
/* Tell the target we are finished. */
bzero(&e, sizeof(e));
memset(&e, 0, sizeof(e));
e.type = ClientMessage;
e.display = event->display;
e.window = event->data.l[0];