mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-22 05:34:46 +00:00
keeping the alt 87514151c4 (diff-73a8dc1ce58605f6c5ea53548454c3bae516ec5132a29c9d7ff7edf9730c75be)
19 lines
290 B
C
19 lines
290 B
C
#ifndef AL_DYNLOAD_H
|
|
#define AL_DYNLOAD_H
|
|
|
|
#if defined(_WIN32) || defined(HAVE_DLFCN_H)
|
|
|
|
#define HAVE_DYNLOAD 1
|
|
|
|
void *LoadLib(const char *name);
|
|
void CloseLib(void *handle);
|
|
void *GetSymbol(void *handle, const char *name);
|
|
|
|
#else
|
|
|
|
#define HAVE_DYNLOAD 0
|
|
|
|
#endif
|
|
|
|
#endif /* AL_DYNLOAD_H */
|