1 #ifndef JIM_WIN32COMPAT_H
2 #define JIM_WIN32COMPAT_H
4 /* Compatibility for Windows (mingw and msvc, not cygwin */
10 /* Note that at this point we don't yet have access to jimautoconf.h */
11 #if defined(_WIN32) || defined(WIN32)
14 void *dlopen(const char *path
, int mode
);
15 int dlclose(void *handle
);
16 void *dlsym(void *handle
, const char *symbol
);
19 /* MinGW MS CRT always uses three digits after 'e' */
20 #if defined(__MINGW32__)
21 #define JIM_SPRINTF_DOUBLE_NEEDS_FIX
25 /* These are msvc vs gcc */
28 #pragma warning(disable:4146)
32 #define jim_wide _int64
34 #define LLONG_MAX 9223372036854775807I64
37 #define LLONG_MIN (-LLONG_MAX - 1I64)
39 #define JIM_WIDE_MIN LLONG_MIN
40 #define JIM_WIDE_MAX LLONG_MAX
41 #define JIM_WIDE_MODIFIER "I64d"
42 #define strcasecmp _stricmp
43 #define strtoull _strtoui64
52 int gettimeofday(struct timeval
*tv
, void *unused
);
60 long handle
; /* -1 for failed rewind */
61 struct _finddata_t info
;
62 struct dirent result
; /* d_name null iff first time */
63 char *name
; /* null-terminated char string */
66 DIR *opendir(const char *name
);
67 int closedir(DIR *dir
);
68 struct dirent
*readdir(DIR *dir
);