2010-07-25 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / eglib / src / 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 G_GUINT64_FORMAT "d"
30 #define GPOINTER_TO_INT(ptr)   ((gint)(intptr_t) (ptr))
31 #define GPOINTER_TO_UINT(ptr)  ((guint)(intptr_t) (ptr))
32 #define GINT_TO_POINTER(v)     ((gpointer)(intptr_t) (v))
33 #define GUINT_TO_POINTER(v)    ((gpointer)(intptr_t) (v))
34
35 #define INT32_MAX 2147483647
36 #define INT32_MIN (~ INT32_MAX)
37 #define INT64_MAX 9223372036854775807i64
38 #define INT64_MIN (~INT64_MAX)
39 #define UINT32_MAX 0xffffffffU
40 #define UINT64_MAX 0xffffffffffffffffULL
41
42 #define STDOUT_FILENO (int)(intptr_t)stdout
43 #define STDERR_FILENO (int)(intptr_t)stderr
44
45
46 /* FIXME: what should this be ?*/
47 #define X_OK 4 /* This is really read */
48 #define WNOHANG 1
49 #define F_SETFD 1
50 #define FD_CLOEXEC 1
51
52 #undef inline
53 #define inline __inline
54
55 #define strtok_r strtok_s
56
57 #undef G_HAVE_UNISTD_H
58 #undef G_HAVE_SYS_TIME_H
59 #undef G_HAVE_SYS_WAIT_H
60 #undef G_HAVE_PWD_H
61 #undef G_HAVE_STRNDUP
62 #define G_HAVE_GETOPT_H 1
63
64 int vasprintf(char **ret, const char *fmt, va_list ap);
65
66 /* disable the following warnings 
67  * C4100: The formal parameter is not referenced in the body of the function. The unreferenced parameter is ignored. 
68  * C4127: conditional expression is constant
69 */
70 #pragma warning(disable:4100 4127)
71 #endif
72
73 #endif