]> git.pond.sub.org Git - empserver/blob - src/lib/w32/unistd.h
(ssize_t, pid_t) [_WIN32]: Back out the previous revision of unistd.h
[empserver] / src / lib / w32 / unistd.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2007, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  unistd.h: POSIX emulation for WIN32
29  * 
30  *  Known contributors to this file:
31  *     Ron Koenderink, 2007
32  */
33
34 #ifndef UNISTD_H
35 #define UNISTD_H
36
37 #include <stdio.h>
38 #include "getopt.h"
39 #include <sys/stat.h>
40
41 /*
42  * posixfile.c
43  */
44 #define mkdir(dir, perm)    posix_mkdir((dir), (perm))
45
46 extern int posix_mkdir(const char *dirname, int perm);
47
48 /*
49  * posixio.c
50  */
51 #ifndef S_IRUSR
52 #define S_IRUSR     _S_IREAD
53 #define S_IWUSR     _S_IWRITE
54 #define S_IXUSR     _S_IEXEC
55 #define S_IRWXU     S_IRUSR | S_IWUSR | S_IXUSR
56 #endif
57 #ifndef S_IRGRP
58 #define S_IRGRP     0
59 #define S_IWGRP     0
60 #define S_IXGRP     0
61 #define S_IRWXG     S_IRGRP | S_IWGRP | S_IXGRP
62 #endif
63 #ifndef S_IROTH
64 #define S_IROTH     0
65 #define S_IWOTH     0
66 #define S_IXOTH     0
67 #define S_IRWXO     S_IROTH | S_IWOTH | S_IXOTH
68 #endif
69
70 typedef int socklen_t;
71
72 #define accept(fd, addr, addrlen) \
73     posix_accept((fd), (addr), (addrlen))
74 #define bind(fd, name, namelen) \
75     posix_bind((fd), (name), (namelen))
76 #define listen(fd, backlog) \
77     posix_listen((fd), (backlog))
78 #define setsockopt(fd, level, optname, optval, optlen) \
79     posix_setsockopt((fd), (level), (optname), (optval), (optlen))
80 #define shutdown(fd, how) \
81     posix_shutdown((fd), (how))
82 #define socket(domain, type, protocol) \
83     posix_socket((domain), (type), (protocol))
84
85 #define close(fd) \
86     posix_close((fd))
87 #define creat(fname, pmode) \
88     posix_open((fname), _O_WRONLY | _O_CREAT |_O_TRUNC, (pmode))
89 #define fstat(fd, buffer) \
90     posix_fstat((fd), (buffer))
91 #define lseek(fd, offset, origin) \
92     posix_lseek((fd), (offset), (origin))
93 #define open(fname, oflag, ...) \
94     posix_open((fname), (oflag), __VA_ARGS__)
95 #define read    posix_read
96 #define write(fd, buffer, count) \
97     posix_write((fd), (buffer), (count))
98 #define fileno(stream) \
99     posix_fileno((stream))
100 #define fsync(fd) \
101     posix_fsync((fd))
102
103 #define O_NONBLOCK  1
104 #define F_RDLCK     0
105 #define F_WRLCK     1
106 #define F_GETFL     1
107 #define F_SETFL     2
108 #define F_SETLK     3
109 #define EWOULDBLOCK WSAEWOULDBLOCK
110 #define ENOTSOCK    WSAENOTSOCK
111
112 struct flock
113 {
114     int l_type;
115     int l_whence;
116     int l_start;
117     int l_len;
118 };
119
120 extern int posix_fd2socket(int fd);
121
122 extern int posix_accept(int fd, struct sockaddr *addr, socklen_t *addrlen);
123 extern int posix_bind(int fd, const struct sockaddr *name, int namelen);
124 extern int posix_listen(int fd, int backlog);
125 extern int posix_setsockopt(int fd, int level, int optname,
126                       const char *optval, int optlen);
127 extern int posix_shutdown(int fd, int how);
128 extern int posix_socket(int domain, int type, int protocol);
129
130 extern int posix_close(int fd);
131 extern int posix_fstat(int fd, struct stat *buffer);
132 extern int posix_lseek(int fd, long offset, int origin);
133 extern int posix_open(const char *fname, int oflag, ...);
134 extern int posix_read(int fd, void *buffer, unsigned int count);
135 extern int posix_write(int fd, const void *buffer, unsigned int count);
136
137 extern int posix_fileno(FILE *stream);
138 extern int posix_fsync(int fd);
139 extern int fcntl(int fd, int cmd, ...);
140 #endif /* UNISTD_H */