Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
6098399a
Commit
6098399a
authored
Mar 29, 2002
by
Michal Pasternak
Committed by
Alexandre Julliard
Mar 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed pack/unpack routines for WM_DDE_EXECUTE.
parent
740ba2ca
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
0 deletions
+7
-0
configure
configure
+0
-0
configure.ac
configure.ac
+1
-0
config.h.in
include/config.h.in
+3
-0
port.c
library/port.c
+3
-0
No files found.
configure
View file @
6098399a
This diff is collapsed.
Click to expand it.
configure.ac
View file @
6098399a
...
...
@@ -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 \
...
...
include/config.h.in
View file @
6098399a
...
...
@@ -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
...
...
library/port.c
View file @
6098399a
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment