mirror of
https://github.com/git-for-windows/git.git
synced 2026-04-29 04:28:53 -05:00
Dynamic loading of DLL functions is duplicated in several places. Add a set of macros to simplify the process. Signed-off-by: Karsten Blees <blees@dcon.de> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
44 lines
1.1 KiB
C
44 lines
1.1 KiB
C
#ifndef LAZYLOAD_H
|
|
#define LAZYLOAD_H
|
|
|
|
/* simplify loading of DLL functions */
|
|
|
|
struct proc_addr {
|
|
const char *const dll;
|
|
const char *const function;
|
|
FARPROC pfunction;
|
|
unsigned initialized : 1;
|
|
};
|
|
|
|
/* Declares a function to be loaded dynamically from a DLL. */
|
|
#define DECLARE_PROC_ADDR(dll, rettype, function, ...) \
|
|
static struct proc_addr proc_addr_##function = \
|
|
{ #dll, #function, NULL, 0 }; \
|
|
static rettype (WINAPI *function)(__VA_ARGS__)
|
|
|
|
/*
|
|
* Loads a function from a DLL (once-only).
|
|
* Returns non-NULL function pointer on success.
|
|
* Returns NULL + errno == ENOSYS on failure.
|
|
*/
|
|
#define INIT_PROC_ADDR(function) (function = get_proc_addr(&proc_addr_##function))
|
|
|
|
static inline void *get_proc_addr(struct proc_addr *proc)
|
|
{
|
|
/* only do this once */
|
|
if (!proc->initialized) {
|
|
HANDLE hnd;
|
|
proc->initialized = 1;
|
|
hnd = LoadLibraryExA(proc->dll, NULL,
|
|
LOAD_LIBRARY_SEARCH_SYSTEM32);
|
|
if (hnd)
|
|
proc->pfunction = GetProcAddress(hnd, proc->function);
|
|
}
|
|
/* set ENOSYS if DLL or function was not found */
|
|
if (!proc->pfunction)
|
|
errno = ENOSYS;
|
|
return proc->pfunction;
|
|
}
|
|
|
|
#endif
|