summaryrefslogtreecommitdiff
path: root/src/win32/dl/dl.h
blob: 1907554ddc52c5f9fa00edb8a38ac0996c754e3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* POSIX emulation layer for Windows.
 *
 * (C) 2008-2025 Anope Team
 * Contact us at team@anope.org
 *
 * Please read COPYING and README for further details.
 */

#define RTLD_NOW 0

extern void *dlopen(const char *filename, int);
extern char *dlerror(void);
extern void *dlsym(void *handle, const char *symbol);
extern int dlclose(void *handle);