summaryrefslogtreecommitdiff
path: root/include/luaglue/LuaVM.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/luaglue/LuaVM.hpp')
-rwxr-xr-xinclude/luaglue/LuaVM.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/luaglue/LuaVM.hpp b/include/luaglue/LuaVM.hpp
index 8fe781b..0877468 100755
--- a/include/luaglue/LuaVM.hpp
+++ b/include/luaglue/LuaVM.hpp
@@ -14,10 +14,11 @@ class LuaVM
LUAGLUE_DLL_VISIBLE ~LuaVM( );
LUAGLUE_DLL_VISIBLE void loadSource( const char *sourceFilename );
- void executeMain( );
- void executeFunction( const std::string &f );
+ LUAGLUE_DLL_VISIBLE void executeMain( );
+ LUAGLUE_DLL_VISIBLE void executeFunction( const std::string &f );
LUAGLUE_DLL_VISIBLE void dumpState( );
LUAGLUE_DLL_VISIBLE void fullGarbageCollect( );
+ LUAGLUE_DLL_VISIBLE std::string getString( const std::string &key );
LUAGLUE_DLL_VISIBLE lua_State *handle( );