blob: 4c8e5fc416bcaf6f3e805654a30e94d1e2279810 (
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
|
/*
* Shared library handling
* Copyright Jan Engelhardt, 2007-2009
*
* This file is part of libHX. libHX is free software; you can
* redistribute it and/or modify it under the terms of the GNU Lesser
* General Public License as published by the Free Software Foundation;
* either version 2.1 or (at your option) any later version.
*/
#ifdef _WIN32
# include <windows.h>
#else
# include <dlfcn.h>
#endif
#include <libHX/misc.h>
#include "internal.h"
EXPORT_SYMBOL void *HX_dlopen(const char *file)
{
#ifdef _WIN32
return LoadLibrary(file);
#else
return dlopen(file, RTLD_LAZY);
#endif
}
EXPORT_SYMBOL void *HX_dlsym(void *handle, const char *symbol)
{
#ifdef _WIN32
return GetProcAddress(handle, symbol);
#else
return dlsym(handle, symbol);
#endif
}
EXPORT_SYMBOL void HX_dlclose(void *handle)
{
#ifdef _WIN32
FreeLibrary(handle);
#else
dlclose(handle);
#endif
}
EXPORT_SYMBOL const char *HX_dlerror(void)
{
#ifdef _WIN32
return "[Error unavailable on WIN32]";
#else
return dlerror();
#endif
}
|