]> git.tdb.fi Git - ext/openal.git/blob - common/dynload.h
Import OpenAL Soft 1.23.1 sources
[ext/openal.git] / common / dynload.h
1 #ifndef AL_DYNLOAD_H
2 #define AL_DYNLOAD_H
3
4 #if defined(_WIN32) || defined(HAVE_DLFCN_H)
5
6 #define HAVE_DYNLOAD
7
8 void *LoadLib(const char *name);
9 void CloseLib(void *handle);
10 void *GetSymbol(void *handle, const char *name);
11
12 #endif
13
14 #endif /* AL_DYNLOAD_H */