Prefix header guards with GEANY_ for consistency

This commit is contained in:
Enrico Tröger 2011-11-20 13:31:56 +01:00
parent 7edcb7978f
commit 917ce32ccc
5 changed files with 13 additions and 13 deletions

View File

@ -30,8 +30,8 @@
* when making changes (see 'Keeping the plugin ABI stable' in the HACKING file). */
#ifndef PLUGINDATA_H
#define PLUGINDATA_H
#ifndef GEANY_PLUGINDATA_H
#define GEANY_PLUGINDATA_H
/* Compatibility for sharing macros between API and core.
* First include geany.h, then plugindata.h, then other API headers. */

View File

@ -21,8 +21,8 @@
*/
#ifndef PLUGINPRIVATE_H
#define PLUGINPRIVATE_H
#ifndef GEANY_PLUGINPRIVATE_H
#define GEANY_PLUGINPRIVATE_H
#include "plugindata.h"
#include "ui_utils.h" /* GeanyAutoSeparator */
@ -62,4 +62,4 @@ GeanyPluginPrivate;
typedef GeanyPluginPrivate Plugin; /* shorter alias */
#endif /* PLUGINPRIVATE_H */
#endif /* GEANY_PLUGINPRIVATE_H */

View File

@ -21,8 +21,8 @@
*/
#ifndef PLUGINS_H
#define PLUGINS_H
#ifndef GEANY_PLUGINS_H
#define GEANY_PLUGINS_H
#ifdef HAVE_PLUGINS

View File

@ -21,8 +21,8 @@
*/
#ifndef PLUGINUTILS_H
#define PLUGINUTILS_H
#ifndef GEANY_PLUGINUTILS_H
#define GEANY_PLUGINUTILS_H
#ifdef HAVE_PLUGINS
@ -55,4 +55,4 @@ struct GeanyKeyGroup *plugin_set_key_group(struct GeanyPlugin *plugin,
void plugin_show_configure(struct GeanyPlugin *plugin);
#endif /* HAVE_PLUGINS */
#endif /* PLUGINUTILS_H */
#endif /* GEANY_PLUGINUTILS_H */

View File

@ -14,8 +14,8 @@
* to br_*", try renaming prefix.c to prefix.cpp
*/
#ifndef _PREFIX_H_
#define _PREFIX_H_
#ifndef GEANY_PREFIX_H
#define GEANY_PREFIX_H
/*
@ -93,4 +93,4 @@ char *br_prepend_prefix (void *symbol, char *path);
#endif /* ENABLE_BINRELOC */
#endif /* _PREFIX_H_ */
#endif /* GEANY_PREFIX_H */