Go to the source code of this file.
◆ TEST_CASE()
TEST_CASE |
( |
"load_shared_library" | | ) |
|
Definition at line 21 of file shared_lib_test.cpp.
21 {
22#ifndef OS_WASM
26 }
29 }
30 else {
32 }
33 shared_lib
lib= load_shared_library (
"example_dynamic_library",
lib_path);
34 double (*func) (int)=
lib->get_function<
double,
int> (
"square_div_2");
35 double res = func (5);
37#endif
38}
The list class represents a linked list.