~ubuntu-branches/debian/sid/geany-plugins/sid

« back to all changes in this revision

Viewing changes to geanylua/glspi_ver.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-07-10 22:56:41 UTC
  • Revision ID: james.westby@ubuntu.com-20090710225641-xc1126t7pq0jmpos
Tags: upstream-0.17.1
ImportĀ upstreamĀ versionĀ 0.17.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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.")
 
10
 
 
11
#define PLUGIN_VER VERSION
 
12
 
 
13
#define PLUGIN_AUTHOR "Jeff Pohlmeyer"
 
14
 
 
15
#define MY_GEANY_API_VER 115
 
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