REminiscence/dynlib.h

17 lines
200 B
C
Raw Normal View History

2017-11-03 17:00:00 +01:00
#ifndef DYNLIB_H__
#define DYNLIB_H__
struct DynLib_impl;
struct DynLib {
DynLib_impl *_impl;
DynLib(const char *name);
~DynLib();
void *getSymbol(const char *name);
};
#endif // DYNLIB_H__