[runtime] Move eglib into mono/eglib so it becomes a convenience library similar...
[mono.git] / mono / eglib / eglib-config.hw
1 #ifndef __EGLIB_CONFIG_H
2 #define __EGLIB_CONFIG_H
3
4 /*
5  * System-dependent settings
6  */
7 #define G_OS_WIN32 1
8
9 #ifdef _MSC_VER
10
11 #include <io.h>
12
13 #define G_GNUC_PRETTY_FUNCTION   __FUNCTION__
14 #define G_GNUC_UNUSED            
15 #define G_BYTE_ORDER             1234
16 #define G_GNUC_NORETURN          
17 #define G_BREAKPOINT()           __debugbreak()
18 #define MAXPATHLEN 242
19
20 typedef uintptr_t gsize;
21 typedef intptr_t gssize;
22 typedef int pid_t;
23
24 #define G_DIR_SEPARATOR          '\\'
25 #define G_DIR_SEPARATOR_S        "\\"
26 #define G_SEARCHPATH_SEPARATOR_S ";"
27 #define G_SEARCHPATH_SEPARATOR   ';'
28 #define G_GSIZE_FORMAT   "d"
29 #define GPOINTER_TO_INT(ptr)   ((gint)(intptr_t) (ptr))
30 #define GPOINTER_TO_UINT(ptr)  ((guint)(intptr_t) (ptr))
31 #define GINT_TO_POINTER(v)     ((gpointer)(intptr_t) (v))
32 #define GUINT_TO_POINTER(v)    ((gpointer)(intptr_t) (v))
33
34 #define STDOUT_FILENO (int)(intptr_t)stdout
35 #define STDERR_FILENO (int)(intptr_t)stderr
36
37 /* FIXME: what should this be ?*/
38 #define X_OK 4 /* This is really read */
39 #define WNOHANG 1
40 #define F_SETFD 1
41 #define FD_CLOEXEC 1
42
43 #undef inline
44 #define inline __inline
45
46 #define strtok_r strtok_s
47
48 #undef G_HAVE_UNISTD_H
49 #undef G_HAVE_SYS_TIME_H
50 #undef G_HAVE_SYS_WAIT_H
51 #undef G_HAVE_PWD_H
52 #undef G_HAVE_STRNDUP
53 #define G_HAVE_GETOPT_H 1
54
55 /* disable the following warnings 
56  * C4100: The formal parameter is not referenced in the body of the function. The unreferenced parameter is ignored. 
57  * C4127: conditional expression is constant
58 */
59 #pragma warning(disable:4100 4127)
60 #endif
61
62 typedef void * GPid;
63 #endif