summaryrefslogtreecommitdiff
path: root/tests/c++_shared_library/src/interface.h
diff options
context:
space:
mode:
authorruki <[email protected]>2016-02-22 08:49:20 +0800
committerruki <[email protected]>2016-02-22 08:49:20 +0800
commitec6fd4eeca3fa468cffb25b472eb349c1fed06aa (patch)
tree3dbbb42e44310d8ae80ba2361a9f34bbbb90da13 /tests/c++_shared_library/src/interface.h
parent762f3cd87615acbed339931bfb56c2b75c44cfa0 (diff)
modify tests script
Diffstat (limited to 'tests/c++_shared_library/src/interface.h')
-rwxr-xr-xtests/c++_shared_library/src/interface.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/c++_shared_library/src/interface.h b/tests/c++_shared_library/src/interface.h
deleted file mode 100755
index ef24ba3ce..000000000
--- a/tests/c++_shared_library/src/interface.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#if defined(_WIN32)
-# define __export __declspec(dllexport)
-#elif defined(__GNUC__) && ((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3))
-# define __export __attribute__((visibility("default")))
-#else
-# define __export
-#endif
-
-/*! calculate add(a, b)
- *
- * @param a the first argument
- * @param b the second argument
- *
- * @return the result
- */
-__export int add(int a, int b);
-
-#ifdef __cplusplus
-}
-#endif