Fix arithemtic overflow in Double.ToString exposed by Bug #383531.
[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
41 #define STDOUT_FILENO (int)(intptr_t)stdout
42 #define STDERR_FILENO (int)(intptr_t)stderr
43
44
45 /* FIXME: what should this be ?*/
46 #define X_OK 4 /* This is really read */
47 #define WNOHANG 1
48 #define F_SETFD 1
49 #define FD_CLOEXEC 1
50
51 #undef inline
52 #define inline __inline
53
54 #define strtok_r strtok_s
55
56 #undef G_HAVE_UNISTD_H
57 #undef G_HAVE_SYS_TIME_H
58 #undef G_HAVE_SYS_WAIT_H
59 #undef G_HAVE_PWD_H
60 #undef G_HAVE_STRNDUP
61 #define G_HAVE_GETOPT_H 1
62
63 int vasprintf(char **ret, const char *fmt, va_list ap);
64
65 /* disable the following warnings 
66  * C4100: The formal parameter is not referenced in the body of the function. The unreferenced parameter is ignored. 
67  * C4127: conditional expression is constant
68 */
69 #pragma warning(disable:4100 4127)
70 #endif
71
72 #endif