summaryrefslogtreecommitdiff
path: root/stun/stunagent.h
diff options
context:
space:
mode:
authorYouness Alaoui <kakaroto@kakaroto.(none)>2008-11-03 16:34:05 -0500
committerYouness Alaoui <kakaroto@kakaroto.(none)>2008-11-03 16:34:05 -0500
commit50455d76f185221487087c873e47be5a5fc912d6 (patch)
tree21b53bab717418e4f6cf5161e11e62af1fcae863 /stun/stunagent.h
parent25c8b83757b373b80404f0f54fcbed263c250e6d (diff)
downloadlibnice-50455d76f185221487087c873e47be5a5fc912d6.tar.gz
Fix includes for win32 compilation
Diffstat (limited to 'stun/stunagent.h')
-rw-r--r--stun/stunagent.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/stun/stunagent.h b/stun/stunagent.h
index 5e94030..38be93f 100644
--- a/stun/stunagent.h
+++ b/stun/stunagent.h
@@ -35,9 +35,16 @@
#ifndef _STUN_AGENT_H
#define _STUN_AGENT_H
+
+#ifdef _WIN32
+#include "win32_common.h"
+#else
#include <stdint.h>
-#include <sys/types.h>
#include <stdbool.h>
+#endif
+
+
+#include <sys/types.h>
typedef struct stun_agent_t StunAgent;