Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
215738a1
Commit
215738a1
authored
Oct 19, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dirent.h is a conditional include now.
parent
639c2de0
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
29 additions
and
9 deletions
+29
-9
freetype.c
dlls/gdi32/freetype.c
+3
-1
oldconfig.c
dlls/kernel32/oldconfig.c
+3
-1
directory.c
dlls/ntdll/directory.c
+3
-1
server.c
dlls/ntdll/server.c
+3
-1
shfldr_unixfs.c
dlls/shell32/shfldr_unixfs.c
+3
-1
trash.c
dlls/shell32/trash.c
+3
-1
mkagl.c
dlls/wineps.drv/mkagl.c
+5
-1
truetype.c
dlls/wineps.drv/truetype.c
+3
-1
type1afm.c
dlls/wineps.drv/type1afm.c
+3
-1
No files found.
dlls/gdi32/freetype.c
View file @
215738a1
...
...
@@ -33,7 +33,9 @@
# include <sys/mman.h>
#endif
#include <string.h>
#include <dirent.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#include <stdio.h>
#include <assert.h>
...
...
dlls/kernel32/oldconfig.c
View file @
215738a1
...
...
@@ -32,7 +32,9 @@
# include <sys/stat.h>
#endif
#include <fcntl.h>
#include <dirent.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
...
...
dlls/ntdll/directory.c
View file @
215738a1
...
...
@@ -24,7 +24,9 @@
#include "wine/port.h"
#include <sys/types.h>
#include <dirent.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#include <errno.h>
#include <fcntl.h>
#include <stdarg.h>
...
...
dlls/ntdll/server.c
View file @
215738a1
...
...
@@ -23,7 +23,9 @@
#include <assert.h>
#include <ctype.h>
#include <dirent.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
...
...
dlls/shell32/shfldr_unixfs.c
View file @
215738a1
...
...
@@ -128,7 +128,9 @@
#include <stdio.h>
#include <stdarg.h>
#include <limits.h>
#include <dirent.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
...
...
dlls/shell32/trash.c
View file @
215738a1
...
...
@@ -30,7 +30,9 @@
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <dirent.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#include "windef.h"
#include "winbase.h"
...
...
dlls/wineps.drv/mkagl.c
View file @
215738a1
...
...
@@ -16,8 +16,12 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <sys/types.h>
#include <dirent.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
...
...
dlls/wineps.drv/truetype.c
View file @
215738a1
...
...
@@ -59,7 +59,9 @@
#endif
#include <sys/types.h>
#include <dirent.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
...
...
dlls/wineps.drv/type1afm.c
View file @
215738a1
...
...
@@ -32,7 +32,9 @@
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <dirent.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#include <errno.h>
#include <ctype.h>
#include <limits.h>
/* INT_MIN */
...
...
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