Fixed pack/unpack routines for WM_DDE_EXECUTE.

This commit is contained in:
Michal Pasternak 2002-03-29 18:04:43 +00:00 committed by Alexandre Julliard
parent 740ba2ca65
commit 6098399a77
4 changed files with 235 additions and 227 deletions

455
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -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 \

View File

@ -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

View File

@ -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