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