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
|
#include <stdio.h>
#include <assert.h>
#ifdef _WIN32
#include <windows.h>
#else
#include <dlfcn.h>
#endif
#if defined _WIN32 || defined __CYGWIN__
#define DLL_PUBLIC __declspec(dllexport)
#else
#if defined __GNUC__
#define DLL_PUBLIC __attribute__ ((visibility("default")))
#else
#pragma message ("Compiler does not support symbol visibility.")
#define DLL_PUBLIC
#endif
#endif
typedef int (*fptr) (void);
int DLL_PUBLIC
func_from_executable(void)
{
return 42;
}
int main(int argc, char **argv)
{
int expected, actual;
fptr importedfunc;
(void)argc; // noop
#ifdef _WIN32
HMODULE h = LoadLibraryA(argv[1]);
#else
void *h = dlopen(argv[1], RTLD_NOW);
#endif
assert(h != NULL);
#ifdef _WIN32
importedfunc = (fptr) GetProcAddress (h, "func");
#else
importedfunc = (fptr) dlsym(h, "func");
#endif
assert(importedfunc != NULL);
assert(importedfunc != func_from_executable);
actual = (*importedfunc)();
expected = func_from_executable();
assert(actual == expected);
#ifdef _WIN32
FreeLibrary(h);
#else
dlclose(h);
#endif
return 0;
}
|