First Commit
This commit is contained in:
14
externals/openal-soft/common/dynload.h
vendored
Normal file
14
externals/openal-soft/common/dynload.h
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef AL_DYNLOAD_H
|
||||
#define AL_DYNLOAD_H
|
||||
|
||||
#if defined(_WIN32) || defined(HAVE_DLFCN_H)
|
||||
|
||||
#define HAVE_DYNLOAD
|
||||
|
||||
void *LoadLib(const char *name);
|
||||
void CloseLib(void *handle);
|
||||
void *GetSymbol(void *handle, const char *name);
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* AL_DYNLOAD_H */
|
||||
Reference in New Issue
Block a user