aboutsummaryrefslogtreecommitdiff
path: root/src/OSC-common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/OSC-common.h')
-rw-r--r--src/OSC-common.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/OSC-common.h b/src/OSC-common.h
index 80ee70b..d457686 100644
--- a/src/OSC-common.h
+++ b/src/OSC-common.h
@@ -41,7 +41,21 @@ typedef int Boolean;
#define TRUE 1
#define FALSE 0
#endif
-
+
+
+#ifdef WIN32
+ #include <stdio.h>
+ #ifdef OSC_EXPORTS
+ #define OSC_API __declspec(dllexport)
+ #else
+ #define OSC_API __declspec(dllimport)
+ #endif
+ #ifdef _DEBUG
+ #define DEBUG
+ #endif
+#endif
+
+//#define int32_t t_int
/* Fixed byte width types */
typedef int int4; /* 4 byte int */
@@ -57,4 +71,3 @@ void OSCProblem(char *s, ...);
/* Warning for user */
void OSCWarning(char *s, ...);
-