]> git.pond.sub.org Git - empserver/blob - src/lib/w32/unistd.h
Use src/lib/w32/w32io.c for client
[empserver] / src / lib / w32 / unistd.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2009, 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 Windows
29  *
30  *  Known contributors to this file:
31  *     Ron Koenderink, 2007
32  *     Markus Armbruster, 2007-2009
33  */
34
35 /*
36  * We can provide POSIX headers that don't exist in Windows, but we
37  * can't augment existing headers.  Some stuff that should be in such
38  * headers ends up here, and some in w32misc.h.  Can't be helped.
39  */
40
41 #ifndef UNISTD_H
42 #define UNISTD_H
43
44 /*
45  * We override system functions by defining them as macros.  This
46  * breaks if the system's declaration is included later.  Include them
47  * here.  Major name space pollution, can't be helped.
48  */
49 #include <getopt.h>
50 #include <io.h>
51 #include <direct.h>
52 #include <sys/stat.h>
53 #include "w32types.h"
54
55 /*
56  * w32file.c
57  */
58 /* Should be in sys/stat.h */
59 #define mkdir(dir, perm)    w32_mkdir((dir), (perm))
60 extern int w32_mkdir(const char *dirname, mode_t perm);
61
62 /* Should be in sys/stat.h */
63 #ifndef S_IRUSR
64 #define S_IRUSR     _S_IREAD
65 #define S_IWUSR     _S_IWRITE
66 #define S_IXUSR     _S_IEXEC
67 #define S_IRWXU     S_IRUSR | S_IWUSR | S_IXUSR
68 #endif
69 #ifndef S_IRGRP
70 #define S_IRGRP     0
71 #define S_IWGRP     0
72 #define S_IXGRP     0
73 #define S_IRWXG     S_IRGRP | S_IWGRP | S_IXGRP
74 #endif
75 #ifndef S_IROTH
76 #define S_IROTH     0
77 #define S_IWOTH     0
78 #define S_IXOTH     0
79 #define S_IRWXO     S_IROTH | S_IWOTH | S_IXOTH
80 #endif
81
82 /* Should be in fcntl.h */
83 #define O_NONBLOCK  1
84
85 #define F_GETFL     1
86 #define F_SETFL     2
87
88 extern int fcntl(int fd, int cmd, ...);
89
90 /* Stuff that actually belongs here */
91 #define close(fd) w32_close_function((fd))
92 extern int (*w32_close_function)(int);
93 #define ftruncate(fd, length) _chsize((fd), (length))
94 #define read(fd, buf, sz) w32_read_function((fd), (buf), (sz))
95 extern int (*w32_read_function)(int, void *, unsigned);
96 #define write(fd, buf, sz) w32_write_function((fd), (buf), (sz))
97 extern int (*w32_write_function)(int, const void *, unsigned);
98
99 #endif /* UNISTD_H */