]> git.pond.sub.org Git - empserver/blob - src/lib/w32/w32misc.h
Update copyright notice
[empserver] / src / lib / w32 / w32misc.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  *  w32misc.h: POSIX emulation for WIN32
29  *      Stuff that can not be put in the equivalent include files
30  *
31  *  Known contributors to this file:
32  *     Ron Koenderink, 2007
33  */
34
35 #ifndef W32MISC_H
36 #define W32MISC_H
37
38 #ifdef _MSC_VER
39 /* integral mismatch, due to misuse of sector short */
40 #pragma warning (disable : 4761 )
41
42 /* strings.h (POSIX) or string.h (GNU) */
43 #define strncasecmp(s1, s2, s3) _strnicmp((s1), (s2), (s3))
44 #endif /* _MSC_VER */
45
46 /* stdio.h */
47 #define vsnprintf _vsnprintf
48 #define snprintf _snprintf
49 #undef fileno
50
51 /* stdlib.h */
52 #include <io.h>
53 #define initstate(seed, state, size) \
54     __initstate((seed), (state), (size))
55 #define setstate(state) __setstate((state))
56 #define srandom(seed) __srandom((seed))
57 #define random() __random()
58
59 extern char *__initstate(unsigned seed, char *state, size_t size);
60 extern long __random(void);
61 extern char *__setstate(char *state);
62 extern void __srandom(unsigned seed);
63
64 /* sys/types.h */
65 typedef unsigned short mode_t;
66 typedef long off_t;
67 typedef int pid_t;
68 #ifdef _MSC_VER
69 typedef int __w64 ssize_t;
70 #endif
71
72 /* time.h */
73 struct tm;
74 extern char *strptime(const char *buf, const char *fmt, struct tm *tm);
75
76 #endif /* W32MISC_H */