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
037c8a12
Commit
037c8a12
authored
Feb 11, 2003
by
Steven Edwards
Committed by
Alexandre Julliard
Feb 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Porting fixes.
parent
101f91d9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
35 additions
and
0 deletions
+35
-0
file.c
server/file.c
+2
-0
named_pipe.c
server/named_pipe.c
+2
-0
object.h
server/object.h
+3
-0
request.c
server/request.c
+6
-0
select.c
server/select.c
+4
-0
serial.c
server/serial.c
+6
-0
smb.c
server/smb.c
+6
-0
sock.c
server/sock.c
+2
-0
trace.c
server/trace.c
+4
-0
No files found.
server/file.c
View file @
037c8a12
...
...
@@ -35,7 +35,9 @@
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#ifdef HAVE_UTIME_H
#include <utime.h>
#endif
#include "winerror.h"
#include "winbase.h"
...
...
server/named_pipe.c
View file @
037c8a12
...
...
@@ -32,7 +32,9 @@
#include <stdlib.h>
#include <sys/time.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#include <time.h>
#include <unistd.h>
...
...
server/object.h
View file @
037c8a12
...
...
@@ -21,7 +21,10 @@
#ifndef __WINE_SERVER_OBJECT_H
#define __WINE_SERVER_OBJECT_H
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
#include <sys/time.h>
#include "wine/server_protocol.h"
#include "list.h"
...
...
server/request.c
View file @
037c8a12
...
...
@@ -24,7 +24,9 @@
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
...
...
@@ -39,8 +41,12 @@
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif
#ifdef HAVE_SYS_UIO_H
#include <sys/uio.h>
#endif
#ifdef HAVE_SYS_UN_H
#include <sys/un.h>
#endif
#include <unistd.h>
#include "windef.h"
...
...
server/select.c
View file @
037c8a12
...
...
@@ -18,12 +18,16 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include <assert.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
...
...
server/serial.c
View file @
037c8a12
...
...
@@ -32,9 +32,15 @@
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#ifdef HAVE_UTIME_H
#include <utime.h>
#endif
#ifdef HAVE_TERMIOS_H
#include <termios.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#include "winerror.h"
#include "winbase.h"
...
...
server/smb.c
View file @
037c8a12
...
...
@@ -33,9 +33,15 @@
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#ifdef HAVE_UTIME_H
#include <utime.h>
#endif
#ifdef HAVE_TERMIOS_H
#include <termios.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#include "winerror.h"
#include "winbase.h"
...
...
server/sock.c
View file @
037c8a12
...
...
@@ -37,7 +37,9 @@
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_FILIO_H
# include <sys/filio.h>
#endif
...
...
server/trace.c
View file @
037c8a12
...
...
@@ -24,7 +24,11 @@
#include <ctype.h>
#include <stdio.h>
#include <sys/types.h>
#ifdef HAVE_SYS_UIO_H
#include <sys/uio.h>
#endif
#include "windef.h"
#include "winbase.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