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
c954e5b9
Commit
c954e5b9
authored
Oct 07, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Avoid using wine/port.h.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f9ee0d2f
Hide whitespace changes
Inline
Side-by-side
Showing
34 changed files
with
14 additions
and
38 deletions
+14
-38
atom.c
server/atom.c
+0
-1
change.c
server/change.c
+1
-1
class.c
server/class.c
+0
-1
clipboard.c
server/clipboard.c
+0
-1
completion.c
server/completion.c
+0
-1
console.c
server/console.c
+0
-1
debugger.c
server/debugger.c
+0
-1
device.c
server/device.c
+1
-2
directory.c
server/directory.c
+0
-1
event.c
server/event.c
+0
-1
fd.c
server/fd.c
+0
-1
file.c
server/file.c
+0
-1
handle.c
server/handle.c
+0
-1
hook.c
server/hook.c
+0
-1
mach.c
server/mach.c
+0
-1
mailslot.c
server/mailslot.c
+4
-4
mapping.c
server/mapping.c
+2
-1
mutex.c
server/mutex.c
+0
-1
named_pipe.c
server/named_pipe.c
+0
-1
object.c
server/object.c
+0
-1
process.c
server/process.c
+2
-1
ptrace.c
server/ptrace.c
+0
-1
queue.c
server/queue.c
+1
-1
registry.c
server/registry.c
+0
-1
request.c
server/request.c
+0
-1
semaphore.c
server/semaphore.c
+0
-1
serial.c
server/serial.c
+0
-1
symlink.c
server/symlink.c
+0
-1
thread.c
server/thread.c
+1
-1
timer.c
server/timer.c
+0
-1
trace.c
server/trace.c
+0
-1
unicode.c
server/unicode.c
+2
-1
window.c
server/window.c
+0
-1
winstation.c
server/winstation.c
+0
-1
No files found.
server/atom.c
View file @
c954e5b9
...
...
@@ -20,7 +20,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdlib.h>
...
...
server/change.c
View file @
c954e5b9
...
...
@@ -20,7 +20,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <fcntl.h>
...
...
@@ -32,6 +31,7 @@
#include <limits.h>
#include <dirent.h>
#include <errno.h>
#include <unistd.h>
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
...
...
server/class.c
View file @
c954e5b9
...
...
@@ -20,7 +20,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdlib.h>
...
...
server/clipboard.c
View file @
c954e5b9
...
...
@@ -20,7 +20,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdlib.h>
...
...
server/completion.c
View file @
c954e5b9
...
...
@@ -27,7 +27,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <stdio.h>
...
...
server/console.c
View file @
c954e5b9
...
...
@@ -22,7 +22,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <string.h>
...
...
server/debugger.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <signal.h>
...
...
server/device.c
View file @
c954e5b9
...
...
@@ -19,8 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include "wine/rbtree.h"
#include <assert.h>
#include <fcntl.h>
...
...
@@ -33,6 +31,7 @@
#include "windef.h"
#include "winternl.h"
#include "ddk/wdm.h"
#include "wine/rbtree.h"
#include "object.h"
#include "file.h"
...
...
server/directory.c
View file @
c954e5b9
...
...
@@ -20,7 +20,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdarg.h>
...
...
server/event.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdio.h>
...
...
server/fd.c
View file @
c954e5b9
...
...
@@ -20,7 +20,6 @@
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <dirent.h>
...
...
server/file.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <fcntl.h>
...
...
server/handle.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <limits.h>
...
...
server/hook.c
View file @
c954e5b9
...
...
@@ -20,7 +20,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdarg.h>
...
...
server/mach.c
View file @
c954e5b9
...
...
@@ -20,7 +20,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <errno.h>
...
...
server/mailslot.c
View file @
c954e5b9
...
...
@@ -21,9 +21,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include <assert.h>
#include <fcntl.h>
...
...
@@ -33,7 +30,7 @@
#include <stdlib.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
...
...
@@ -43,6 +40,9 @@
#ifdef HAVE_SYS_FILIO_H
#include <sys/filio.h>
#endif
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "windef.h"
#include "winternl.h"
...
...
server/mapping.c
View file @
c954e5b9
...
...
@@ -19,12 +19,13 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <fcntl.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_SYS_MMAN_H
# include <sys/mman.h>
...
...
server/mutex.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdio.h>
...
...
server/named_pipe.c
View file @
c954e5b9
...
...
@@ -21,7 +21,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <string.h>
...
...
server/object.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <limits.h>
...
...
server/process.c
View file @
c954e5b9
...
...
@@ -19,16 +19,17 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <signal.h>
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/time.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
...
...
server/ptrace.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <errno.h>
...
...
server/queue.c
View file @
c954e5b9
...
...
@@ -19,12 +19,12 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
...
...
server/registry.c
View file @
c954e5b9
...
...
@@ -23,7 +23,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <ctype.h>
...
...
server/request.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <errno.h>
...
...
server/semaphore.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdio.h>
...
...
server/serial.c
View file @
c954e5b9
...
...
@@ -21,7 +21,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <fcntl.h>
...
...
server/symlink.c
View file @
c954e5b9
...
...
@@ -20,7 +20,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdarg.h>
...
...
server/thread.c
View file @
c954e5b9
...
...
@@ -19,8 +19,8 @@
*/
#include "config.h"
#include "wine/port.h"
#define _GNU_SOURCE
/* sched_affinity */
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
...
...
server/timer.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdio.h>
...
...
server/trace.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <ctype.h>
#include <stdarg.h>
...
...
server/unicode.c
View file @
c954e5b9
...
...
@@ -19,11 +19,12 @@
*/
#include "config.h"
#include "wine/port.h"
#include <ctype.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdarg.h>
#include <unistd.h>
#include "windef.h"
#include "winternl.h"
...
...
server/window.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdarg.h>
...
...
server/winstation.c
View file @
c954e5b9
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdarg.h>
...
...
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