dl.h

Go to the documentation of this file.
00001  /* POSIX emulation layer for Windows.
00002  *
00003  * Copyright (C) 2008-2013 Anope Team <team@anope.org>
00004  *
00005  * Please read COPYING and README for further details.
00006  */
00007 
00008 #define RTLD_NOW 0
00009 
00010 extern void *dlopen(const char *filename, int);
00011 extern char *dlerror(void);
00012 extern void *dlsym(void *handle, const char *symbol);
00013 extern int dlclose(void *handle);