blob: fd810a966d7a7e6f9b29134df1fc922322957009 (
plain)
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
|
#include "DynamicLoader.hxx"
#include <example.h>
#include <example_exe.h>
#include <iostream>
#include <string>
#include <stdio.h>
// Implement the ABI used by plugins.
extern "C" int example_exe_function()
{
std::cout << "hello" << std::endl;
return 123;
}
#ifdef CMAKE_INTDIR
# define CONFIG_DIR "/" CMAKE_INTDIR
#else
# define CONFIG_DIR ""
#endif
int main()
{
std::string const libName = EXAMPLE_EXE_PLUGIN_DIR CONFIG_DIR
"/" EXAMPLE_EXE_MOD_PREFIX "example_mod_1" EXAMPLE_EXE_MOD_SUFFIX;
DynamicLoader::LibraryHandle handle = DynamicLoader::OpenLibrary(libName);
if (!handle) {
// Leave the .c_str() on this one. It is needed on OpenWatcom.
std::cerr << "Could not open plugin \"" << libName.c_str() << "\"!"
<< std::endl;
return 1;
}
DynamicLoader::SymbolPointer sym =
DynamicLoader::GetSymbolAddress(handle, "example_mod_1_function");
if (!sym) {
std::cerr << "Could not get plugin symbol \"example_mod_1_function\"!"
<< std::endl;
return 1;
}
#ifdef __WATCOMC__
int(__cdecl * f)(int) = (int(__cdecl*)(int))(sym);
#else
int (*f)(int) = reinterpret_cast<int (*)(int)>(sym);
#endif
if (f(456) != (123 + 456)) {
std::cerr << "Incorrect return value from plugin!" << std::endl;
return 1;
}
DynamicLoader::CloseLibrary(handle);
return 0;
}
|