mirror of
https://github.com/kbeckmann/game-and-watch-retro-go.git
synced 2025-12-16 13:15:55 +01:00
13 lines
265 B
C
13 lines
265 B
C
#ifndef _MIKMOD_DLFCN_H_
|
|
#define _MIKMOD_DLFCN_H_
|
|
|
|
#ifdef MIKMOD_DLAPI_HP
|
|
#define RTLD_LAZY 1
|
|
|
|
extern void *dlopen(const char *, int);
|
|
extern int dlclose(void *);
|
|
extern void *dlsym(void *, const char *);
|
|
#endif /* MIKMOD_DLAPI_HP */
|
|
|
|
#endif /* _MIKMOD_DLFCN_H_ */
|