aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/test_lib_api.hpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-09-13 13:47:30 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-09-14 00:18:49 +0300
commit418e850b2b1f76b204af87a5d930f5129055e09a (patch)
tree470f40f91b500ca1de712689d171433d9dd4d0d5 /test/test_lib_api.hpp
parentcall_stack: try to fix __declspec(noinline) #3 (diff)
downloadwinapi-debug-418e850b2b1f76b204af87a5d930f5129055e09a.tar.gz
winapi-debug-418e850b2b1f76b204af87a5d930f5129055e09a.zip
call_stack: can't noinline w/ MSVC, let's try a DLL
Diffstat (limited to 'test/test_lib_api.hpp')
-rw-r--r--test/test_lib_api.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/test_lib_api.hpp b/test/test_lib_api.hpp
new file mode 100644
index 0000000..6404200
--- /dev/null
+++ b/test/test_lib_api.hpp
@@ -0,0 +1,7 @@
+#pragma once
+
+#ifdef TEST_LIB_EXPORTS
+#define TEST_LIB_API __declspec(dllexport)
+#else
+#define TEST_LIB_API __declspec(dllimport)
+#endif