diff options
author | Xan Lopez <xan@igalia.com> | 2013-03-22 16:43:03 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2013-03-22 16:43:03 +0800 |
commit | 739c65404072de313e6cdb39e6b6caa4f276804d (patch) | |
tree | 6f7c61bb4988fc8caa903bfa48467c63a99d09b6 /embed | |
parent | 7f0df03c524f362a5774e0832048f57d760fbf3f (diff) | |
download | gsoc2013-epiphany-739c65404072de313e6cdb39e6b6caa4f276804d.tar gsoc2013-epiphany-739c65404072de313e6cdb39e6b6caa4f276804d.tar.gz gsoc2013-epiphany-739c65404072de313e6cdb39e6b6caa4f276804d.tar.bz2 gsoc2013-epiphany-739c65404072de313e6cdb39e6b6caa4f276804d.tar.lz gsoc2013-epiphany-739c65404072de313e6cdb39e6b6caa4f276804d.tar.xz gsoc2013-epiphany-739c65404072de313e6cdb39e6b6caa4f276804d.tar.zst gsoc2013-epiphany-739c65404072de313e6cdb39e6b6caa4f276804d.zip |
ephy-about-handler: add license, G_{BEGIN,END}_DECLS, etc
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-about-handler.h | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/embed/ephy-about-handler.h b/embed/ephy-about-handler.h index d73d9fd7e..1b9fa6c65 100644 --- a/embed/ephy-about-handler.h +++ b/embed/ephy-about-handler.h @@ -1,6 +1,21 @@ /* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* - * Copyright (C) 2012, Igalia S.L. + * Copyright © 2012 Igalia S.L. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef EPHY_ABOUT_HANDLER_H @@ -8,12 +23,14 @@ #include <glib.h> +G_BEGIN_DECLS + #define EPHY_ABOUT_SCHEME "ephy-about" #define EPHY_ABOUT_SCHEME_LEN 10 -GString *ephy_about_handler_handle (const char *about); - -void _ephy_about_handler_handle_plugins (GString *data_str, - GList *plugin_list); +GString * ephy_about_handler_handle (const char *about); +void _ephy_about_handler_handle_plugins (GString *data_str, + GList *plugin_list); +G_END_DECLS #endif /* EPHY_ABOUT_HANDLER_H */ |