Blame libmetacity/meta-css-provider-private.h

Packit 5e0819
/*
Packit 5e0819
 * Copyright (C) 2016 Alberts Muktupāvels
Packit 5e0819
 *
Packit 5e0819
 * This program is free software: you can redistribute it and/or modify
Packit 5e0819
 * it under the terms of the GNU General Public License as published by
Packit 5e0819
 * the Free Software Foundation, either version 2 of the License, or
Packit 5e0819
 * (at your option) any later version.
Packit 5e0819
 *
Packit 5e0819
 * This program is distributed in the hope that it will be useful,
Packit 5e0819
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 5e0819
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Packit 5e0819
 * GNU General Public License for more details.
Packit 5e0819
 *
Packit 5e0819
 * You should have received a copy of the GNU General Public License
Packit 5e0819
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Packit 5e0819
 */
Packit 5e0819
Packit 5e0819
#ifndef META_CSS_PROVIDER_PRIVATE_H
Packit 5e0819
#define META_CSS_PROVIDER_PRIVATE_H
Packit 5e0819
Packit 5e0819
#include <gtk/gtk.h>
Packit 5e0819
Packit 5e0819
G_BEGIN_DECLS
Packit 5e0819
Packit 5e0819
G_GNUC_INTERNAL
Packit 5e0819
#define META_TYPE_CSS_PROVIDER meta_css_provider_get_type ()
Packit 5e0819
G_DECLARE_FINAL_TYPE (MetaCssProvider, meta_css_provider,
Packit 5e0819
                      META, CSS_PROVIDER, GtkCssProvider)
Packit 5e0819
Packit 5e0819
G_GNUC_INTERNAL
Packit 5e0819
GtkCssProvider *meta_css_provider_new (const gchar *name,
Packit 5e0819
                                       const gchar *variant);
Packit 5e0819
Packit 5e0819
G_END_DECLS
Packit 5e0819
Packit 5e0819
#endif