summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/Common.h')
-rw-r--r--src/uscxml/Common.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/uscxml/Common.h b/src/uscxml/Common.h
index 09785be..eaa1a2b 100644
--- a/src/uscxml/Common.h
+++ b/src/uscxml/Common.h
@@ -1,6 +1,35 @@
+/**
+ * @file
+ * @author 2012-2013 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de)
+ * @copyright Simplified BSD
+ *
+ * @cond
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the FreeBSD license as published by the FreeBSD
+ * project.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * You should have received a copy of the FreeBSD license along with this
+ * program. If not, see <http://www.opensource.org/licenses/bsd-license>.
+ * @endcond
+ */
+
#ifndef COMMON_H_YZ3CIYP
#define COMMON_H_YZ3CIYP
+#if defined(_WIN32) && !defined(USCXML_STATIC)
+# ifdef USCXML_EXPORT
+# define USCXML_API __declspec(dllexport)
+# else
+# define USCXML_API __declspec(dllimport)
+# endif
+#else
+# define USCXML_API
+#endif
+
#ifdef _WIN32
#include <winsock2.h>
// see http://stackoverflow.com/questions/1372480/c-redefinition-header-files
@@ -28,6 +57,9 @@
#pragma warning (disable : 4240)
#pragma warning (disable : 4250)
+// dll interface
+#pragma warning (disable : 4251)
+
#endif