diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-11-03 12:46:02 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-11-03 12:46:02 (EDT) |
commit | 12c78553edef9f946b815b8aa1afcd209063bed1 (patch) | |
tree | 1ffabf79e383e86df22c2b645ecdb4d843cd0569 /src | |
parent | 4272897568afe7a094160c79d6b8a5a2042e9220 (diff) | |
download | marquee-12c78553edef9f946b815b8aa1afcd209063bed1.zip marquee-12c78553edef9f946b815b8aa1afcd209063bed1.tar.gz marquee-12c78553edef9f946b815b8aa1afcd209063bed1.tar.bz2 |
src/utils/*.h: Add G_BEGIN_DECLS/G_END_DECLS
Diffstat (limited to 'src')
-rw-r--r-- | src/utils/html.h | 4 | ||||
-rw-r--r-- | src/utils/profile-icon.h | 4 | ||||
-rw-r--r-- | src/utils/resources.h | 4 | ||||
-rw-r--r-- | src/utils/svg.h | 4 |
4 files changed, 16 insertions, 0 deletions
diff --git a/src/utils/html.h b/src/utils/html.h index e8b9c16..f0b0345 100644 --- a/src/utils/html.h +++ b/src/utils/html.h @@ -24,6 +24,8 @@ #include <glib.h> +G_BEGIN_DECLS + gchar * mq_html_document(const gchar *title, ...) G_GNUC_NULL_TERMINATED; @@ -85,4 +87,6 @@ mq_html_input_select(const gchar *name, const gchar *label, gchar * mq_html_input_iframe(const gchar *src); +G_END_DECLS + #endif /* MQ_UTILS_HTML_H */ diff --git a/src/utils/profile-icon.h b/src/utils/profile-icon.h index b18a71f..d4c8244 100644 --- a/src/utils/profile-icon.h +++ b/src/utils/profile-icon.h @@ -24,7 +24,11 @@ #include <glib.h> +G_BEGIN_DECLS + gchar * mq_profile_icon_new(const gchar *color); +G_END_DECLS + #endif /* MQ_UTILS_PROFILE_ICON_H */ diff --git a/src/utils/resources.h b/src/utils/resources.h index 3d7d4a5..3e77c86 100644 --- a/src/utils/resources.h +++ b/src/utils/resources.h @@ -26,8 +26,12 @@ #include "../application.h" +G_BEGIN_DECLS + void mq_resource_response(MqApplication *application, const gchar *path, WebKitURISchemeRequest *request); +G_END_DECLS + #endif /* MQ_UTILS_RESOURCES_H */ diff --git a/src/utils/svg.h b/src/utils/svg.h index 9161708..506cdb2 100644 --- a/src/utils/svg.h +++ b/src/utils/svg.h @@ -24,10 +24,14 @@ #include <glib.h> +G_BEGIN_DECLS + gboolean mq_svg_is_color_valid(const gchar *color) G_GNUC_PURE; gchar * mq_svg_set_color(const gchar *svg, const gchar *color); +G_END_DECLS + #endif /* MQ_UTILS_SVG_H */ |