Kaydet (Commit) 917ce32c authored tarafından Enrico Tröger's avatar Enrico Tröger

Prefix header guards with GEANY_ for consistency

üst 7edcb797
......@@ -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. */
......
......@@ -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 */
......@@ -21,8 +21,8 @@
*/
#ifndef PLUGINS_H
#define PLUGINS_H
#ifndef GEANY_PLUGINS_H
#define GEANY_PLUGINS_H
#ifdef HAVE_PLUGINS
......
......@@ -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 */
......@@ -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 */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment