diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/dynamic.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/dynamic.h b/include/dynamic.h index 905eb479e..c14452f8c 100644 --- a/include/dynamic.h +++ b/include/dynamic.h @@ -59,6 +59,12 @@ class CoreExport DLLManager : public classbase */ Module* CallInit(); + /** Retrieves the value of the specified symbol. + * @param name The name of the symbol to retrieve. + * @return Either the value of the specified symbol or or NULL if it does not exist. + */ + void* GetSymbol(const char* name); + /** Get detailed version information from the module file */ std::string GetVersion(); }; |