export openplugin/lookupplugin from plugin manager

develop
jj 2012-06-02 23:35:05 +02:00
parent 470c9f60aa
commit b612532348
1 changed files with 3 additions and 3 deletions

@ -61,11 +61,11 @@ namespace DFHack
struct DFLibrary; struct DFLibrary;
// Open a plugin library // Open a plugin library
DFLibrary * OpenPlugin (const char * filename); DFHACK_EXPORT DFLibrary * OpenPlugin (const char * filename);
// find a symbol inside plugin // find a symbol inside plugin
void * LookupPlugin (DFLibrary * plugin ,const char * function); DFHACK_EXPORT void * LookupPlugin (DFLibrary * plugin ,const char * function);
// Close a plugin library // Close a plugin library
void ClosePlugin (DFLibrary * plugin); DFHACK_EXPORT void ClosePlugin (DFLibrary * plugin);
struct DFHACK_EXPORT CommandReg { struct DFHACK_EXPORT CommandReg {
const char *name; const char *name;