-
Notifications
You must be signed in to change notification settings - Fork 1
/
sotest.cpp
67 lines (49 loc) · 1.15 KB
/
sotest.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <stdio.h>
#define SDL_MAIN_HANDLED
#include "SDL.h"
#include "testclass.h"
#define SONAME "./libfoo.so"
using MyFuncPtr = auto (*)(void) -> void;
union MySdlFuncPtr {
void* voidPtr;
MyFuncPtr funcPtr;
};
static void fail() {
CPRINT("error: %s", SDL_GetError());
exit(1);
}
static void cleanup() {
CPRINT("This is cleanup()");
}
static void localFuncWithStatic() {
CPRINT("This is localFuncWithStatic()");
static TestClass someObj("sotest");
}
int main() {
void *soHandle = nullptr;
MySdlFuncPtr sdlFuncPtr;
CPRINT("Registering cleanup function");
if(atexit(cleanup)) {
CPRINT("Registration failed");
exit(1);
}
SDL_Init(SDL_INIT_EVERYTHING);
CPRINT("Loading SO");
soHandle = SDL_LoadObject(SONAME);
if (!soHandle)
fail();
CPRINT("Getting function pointer from SO");
sdlFuncPtr.voidPtr = SDL_LoadFunction(soHandle, "someSOFunc");
if(!sdlFuncPtr.voidPtr)
fail();
CPRINT("Calling SO function");
(*sdlFuncPtr.funcPtr)();
CPRINT("Calling local function");
localFuncWithStatic();
CPRINT("Unloading SO");
SDL_UnloadObject(soHandle);
CPRINT("Calling SDL_Quit");
SDL_Quit();
CPRINT("Returning from main");
return 0;
}