🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
257 B

  1. #ifndef AL_DYNLOAD_H
  2. #define AL_DYNLOAD_H
  3. #if defined(_WIN32) || defined(HAVE_DLFCN_H)
  4. #define HAVE_DYNLOAD
  5. void *LoadLib(const char *name);
  6. void CloseLib(void *handle);
  7. void *GetSymbol(void *handle, const char *name);
  8. #endif
  9. #endif /* AL_DYNLOAD_H */