Make sure struct members are initialized
[openal-soft.git] / common / dynload.h
blobbd9e86f7907fb033b06ec3a7a69729ce9a6d0bc5
1 #ifndef AL_DYNLOAD_H
2 #define AL_DYNLOAD_H
4 #if defined(_WIN32) || defined(HAVE_DLFCN_H)
6 #define HAVE_DYNLOAD
8 void *LoadLib(const char *name);
9 void CloseLib(void *handle);
10 void *GetSymbol(void *handle, const char *name);
12 #endif
14 #endif /* AL_DYNLOAD_H */