diff options
Diffstat (limited to '')
-rw-r--r-- | test/test_lib.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/test_lib.hpp b/test/test_lib.hpp new file mode 100644 index 0000000..f5fa017 --- /dev/null +++ b/test/test_lib.hpp @@ -0,0 +1,19 @@ +#pragma once + +// This is dumb library which exports a bunch of symbols. + +#include "test_lib_api.hpp" + +namespace test { + +typedef void (*F)(); + +TEST_LIB_API extern volatile int var; + +TEST_LIB_API void foo(F); +TEST_LIB_API void bar(F); +TEST_LIB_API void baz(F); + +TEST_LIB_API void print_call_stack(); + +} // namespace test |