anope

- supernets anope source code & configuration
git clone git://git.acid.vegas/anope.git
Log | Files | Refs | Archive | README

dl.h (348B)

      1 /* POSIX emulation layer for Windows.
      2  *
      3  * (C) 2008-2022 Anope Team
      4  * Contact us at team@anope.org
      5  *
      6  * Please read COPYING and README for further details.
      7  */
      8 
      9 #define RTLD_NOW 0
     10 
     11 extern void *dlopen(const char *filename, int);
     12 extern char *dlerror(void);
     13 extern void *dlsym(void *handle, const char *symbol);
     14 extern int dlclose(void *handle);