summaryrefslogtreecommitdiff
path: root/sci_gateway/cpp/test_toolbox.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sci_gateway/cpp/test_toolbox.hxx')
-rwxr-xr-xsci_gateway/cpp/test_toolbox.hxx18
1 files changed, 18 insertions, 0 deletions
diff --git a/sci_gateway/cpp/test_toolbox.hxx b/sci_gateway/cpp/test_toolbox.hxx
new file mode 100755
index 0000000..b689e70
--- /dev/null
+++ b/sci_gateway/cpp/test_toolbox.hxx
@@ -0,0 +1,18 @@
+#ifndef __TEST_TOOLBOX_GW_HXX__
+#define __TEST_TOOLBOX_GW_HXX__
+
+#ifdef _MSC_VER
+#ifdef TEST_TOOLBOX_GW_EXPORTS
+#define TEST_TOOLBOX_GW_IMPEXP __declspec(dllexport)
+#else
+#define TEST_TOOLBOX_GW_IMPEXP __declspec(dllimport)
+#endif
+#else
+#define TEST_TOOLBOX_GW_IMPEXP
+#endif
+
+extern "C" TEST_TOOLBOX_GW_IMPEXP int test_toolbox(wchar_t* _pwstFuncName);
+
+
+
+#endif /* __TEST_TOOLBOX_GW_HXX__ */