1 
2 /*
3  * glspi_ver.c - This file is part of the Lua scripting plugin for the Geany IDE
4  * See the file "geanylua.c" for copyright information.
5  */
6 
7 #define PLUGIN_NAME _("Lua Script")
8 
9 #define PLUGIN_DESC _("Write and run Lua scripts for custom commands.\nThis plugin currently has no maintainer. Would you like to help by contributing to this plugin?")
10 
11 #define PLUGIN_VER VERSION
12 
13 #define PLUGIN_AUTHOR "Jeff Pohlmeyer"
14 
15 #define MY_GEANY_API_VER 239
16 
17 #define LUA_MODULE_NAME "geany"
18 
19 #define DEFAULT_BANNER _("Lua Script Plugin")
20 
21 
22 #ifndef PLUGIN_EXPORT
23 #define PLUGIN_EXPORT
24 #endif
25 
26