1 // This file is part of Golly. 2 // See docs/License.html for the copyright notice. 3 4 #ifndef _WXLUA_H_ 5 #define _WXLUA_H_ 6 7 void RunLuaScript(const wxString& filepath); 8 // Run the given .lua file. 9 10 void AbortLuaScript(); 11 // Abort the currently running Lua script. 12 13 void FinishLuaScripting(); 14 // Called when app is quitting. 15 16 #endif 17