Fixed pack/unpack routines for WM_DDE_EXECUTE.
This commit is contained in:
parent
740ba2ca65
commit
6098399a77
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue