blob: 0327c9c1ec3ef00defb0e066c9f001d3816e3aae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* POSIX emulation layer for Windows.
*
* Copyright (C) 2008-2017 Anope Team <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);
|