diff options
| author | ruki <[email protected]> | 2018-04-28 00:47:39 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2018-04-27 22:45:56 +0800 |
| commit | 119dd6ff5786ef7a390b98b0558554029113f0dd (patch) | |
| tree | 2fa5d1196a8951c0f8e4ad67c8b443b47280a0ab /tests/projects/shared_library_c/src/interface.h | |
| parent | 7d486e88c2b3301449974e0e97168bc0f0fd6c64 (diff) | |
add wdk tests
Diffstat (limited to 'tests/projects/shared_library_c/src/interface.h')
| -rw-r--r-- | tests/projects/shared_library_c/src/interface.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/projects/shared_library_c/src/interface.h b/tests/projects/shared_library_c/src/interface.h deleted file mode 100644 index ef24ba3ce..000000000 --- a/tests/projects/shared_library_c/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 |
