blob: 034bc7e454eda8a55ea38b47c6e64029b0ee0a4b (
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
|
#ifndef LAZYLOAD_H
#define LAZYLOAD_H
/* simplify loading of DLL functions */
struct proc_addr {
FARPROC pfunction;
unsigned initialized;
};
/* Declares a function to be loaded dynamically from a DLL. */
#define DECLARE_PROC_ADDR(rettype, function, ...) \
static struct proc_addr proc_addr_##function = { NULL, 0 }; \
rettype (WINAPI *function)(__VA_ARGS__)
/*
* Loads a function from a DLL (once-only).
* Returns non-NULL function pointer on success.
* Returns NULL and sets errno == ENOSYS on failure.
*/
#define INIT_PROC_ADDR(dll, function) \
(function = get_proc_addr(#dll, #function, &proc_addr_##function))
void *get_proc_addr(const char *dll, const char *function,
struct proc_addr *proc);
#endif
|