12 lines
230 B
C
12 lines
230 B
C
#include "../../src/dlopen.h"
|
|
|
|
typedef void (*func_handle)();
|
|
|
|
int main()
|
|
{
|
|
struct hotwire_dll_t dll = hw_dlopen("./bin/exampleUnixLib.dll", RTLD_NOW);
|
|
|
|
func_handle func = (func_handle)hw_dlsym(dll, "test");
|
|
|
|
func();
|
|
} |