Bump API version for new plugin entry points (oops)
[geany-mirror.git] / plugins / geanyplugin.h
blob4d0548e2c33c77d8e60697bd0f94cd27458b783a
1 /*
2 * geanyplugin.h - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2009-2012 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 * Copyright 2009-2012 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 /**
23 * @file geanyplugin.h
24 * Single include for plugins.
25 **/
28 #ifndef GEANY_PLUGIN_H
29 #define GEANY_PLUGIN_H 1
31 #ifndef HAVE_PLUGINS
32 # define HAVE_PLUGINS 1
33 #endif
35 /* Only include public headers here */
36 #include "app.h"
37 #include "build.h"
38 #include "dialogs.h"
39 #include "document.h"
40 #include "editor.h"
41 #include "encodings.h"
42 #include "filetypes.h"
43 #include "geany.h"
44 #include "geanyfunctions.h"
45 #include "highlighting.h"
46 #include "keybindings.h"
47 #include "main.h"
48 #include "msgwindow.h"
49 #include "navqueue.h"
50 #include "plugindata.h"
51 #include "pluginutils.h"
52 #include "prefs.h"
53 #include "project.h"
54 #include "sciwrappers.h"
55 #include "search.h"
56 #include "spawn.h"
57 #include "stash.h"
58 #include "support.h"
59 #include "symbols.h"
60 #include "templates.h"
61 #include "toolbar.h"
62 #include "ui_utils.h"
63 #include "utils.h"
65 #include "gtkcompat.h"
67 #endif