aboutsummaryrefslogtreecommitdiff
path: root/src/OSC-common.h
diff options
context:
space:
mode:
authorGeorg Holzmann <grholzi@users.sourceforge.net>2005-08-30 20:54:05 +0000
committerGeorg Holzmann <grholzi@users.sourceforge.net>2005-08-30 20:54:05 +0000
commit6d196fd8683288fa5f29f6eddd28fb12a0a06c79 (patch)
tree37f0d218aa47d0afc947d9faa32c574ee3696e86 /src/OSC-common.h
parenta340c7d62240db6628c0f7a13e04ae6ff52bda0d (diff)
changes by piotr majdak
svn path=/trunk/externals/OSCx/; revision=3464
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, ...);
-