summaryrefslogtreecommitdiffstats
path: root/client/common.h
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2010-07-08 11:40:57 +0200
committerAlon Levy <alevy@redhat.com>2010-12-08 17:11:45 +0200
commitf6cacd0e51d345e1ee8b82e420c59dfaaf95300a (patch)
tree1529fa71ed90955fcbfaa5b8e47c8b77dbdfc008 /client/common.h
parent53c808947d4d5b480d8880f69b53d4e6bac056fa (diff)
downloadspice-f6cacd0e51d345e1ee8b82e420c59dfaaf95300a.tar.gz
spice-f6cacd0e51d345e1ee8b82e420c59dfaaf95300a.tar.xz
spice-f6cacd0e51d345e1ee8b82e420c59dfaaf95300a.zip
mingw32 build: fix build errors
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'client/common.h')
-rw-r--r--client/common.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/client/common.h b/client/common.h
index c3be6568..bda7a191 100644
--- a/client/common.h
+++ b/client/common.h
@@ -37,6 +37,16 @@
#include <string.h>
#ifdef WIN32
+#ifdef __GNUC__
+#define UNICODE 1
+#define _UNICODE 1
+#define WINVER 0x0501
+#define swprintf_s(_str, _len, _fmt, ...) \
+ swprintf(_str, _fmt, ## __VA_ARGS__)
+#define vsnprintf_s(_str, _len1, _len2, _fmt, _valist) \
+ vsnprintf(_str, _len2, _fmt, _valist)
+#define _ftime_s(_t) _ftime(_t)
+#endif
#include <winsock2.h>
#include <windows.h>