Commit 6098399a authored by Michal Pasternak's avatar Michal Pasternak Committed by Alexandre Julliard

Fixed pack/unpack routines for WM_DDE_EXECUTE.

parent 740ba2ca
......@@ -969,6 +969,7 @@ AC_CHECK_HEADERS(\
sys/errno.h \
sys/file.h \
sys/filio.h \
sys/inttypes.h \
sys/ipc.h \
sys/link.h \
sys/lwp.h \
......
......@@ -403,6 +403,9 @@
/* Define if you have the <sys/filio.h> header file. */
#undef HAVE_SYS_FILIO_H
/* Define if you have the <sys/inttypes.h> header file. */
#undef HAVE_SYS_INTTYPES_H
/* Define if you have the <sys/ipc.h> header file. */
#undef HAVE_SYS_IPC_H
......
......@@ -33,6 +33,9 @@
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#ifdef HAVE_SYS_INTTYPES_H
# include <sys/inttypes.h>
#endif
#ifdef HAVE_SYS_TIME_h
# include <sys/time.h>
#endif
......
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