dynload.h 257 B

1234567891011121314
  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 */