mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-15 10:39:13 +01:00
10 lines
159 B
C
10 lines
159 B
C
|
|
||
|
#ifndef __DYNAMIC_LIBRARY_H
|
||
|
#define __DYNAMIC_LIBRARY_H
|
||
|
|
||
|
int loadLib(const char *filename);
|
||
|
int unloadLib();
|
||
|
void *getFunction(const char *funcname);
|
||
|
|
||
|
#endif
|