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
|