aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/test/test_lib.hpp
blob: cf7b8412fdbed4e1bf288bfd232cc672e67315a9 (plain) (tree)
1
2
3
4
5
6
7





                                                         
                   










                                     
                      
#pragma once

// This is dumb library which exports a bunch of symbols.

#include "test_lib_api.hpp"

namespace test_ns {

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_ns