aboutsummaryrefslogtreecommitdiffstats
path: root/common/dynload.h
blob: bd9e86f7907fb033b06ec3a7a69729ce9a6d0bc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 */