Blame plugins/color/gsd-color-profiles.h

Packit 9ca0cf
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
Packit 9ca0cf
 *
Packit 9ca0cf
 * Copyright (C) 2007 William Jon McCann <mccann@jhu.edu>
Packit 9ca0cf
 * Copyright (C) 2011-2013 Richard Hughes <richard@hughsie.com>
Packit 9ca0cf
 *
Packit 9ca0cf
 * This program is free software; you can redistribute it and/or modify
Packit 9ca0cf
 * it under the terms of the GNU General Public License as published by
Packit 9ca0cf
 * the Free Software Foundation; either version 2 of the License, or
Packit 9ca0cf
 * (at your option) any later version.
Packit 9ca0cf
 *
Packit 9ca0cf
 * This program is distributed in the hope that it will be useful,
Packit 9ca0cf
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 9ca0cf
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 9ca0cf
 * GNU General Public License for more details.
Packit 9ca0cf
 *
Packit 9ca0cf
 * You should have received a copy of the GNU General Public License
Packit 9ca0cf
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit 9ca0cf
 *
Packit 9ca0cf
 */
Packit 9ca0cf
Packit 9ca0cf
#ifndef __GSD_COLOR_PROFILES_H
Packit 9ca0cf
#define __GSD_COLOR_PROFILES_H
Packit 9ca0cf
Packit 9ca0cf
#include <glib-object.h>
Packit 9ca0cf
Packit 9ca0cf
G_BEGIN_DECLS
Packit 9ca0cf
Packit 9ca0cf
#define GSD_TYPE_COLOR_PROFILES         (gsd_color_profiles_get_type ())
Packit 9ca0cf
#define GSD_COLOR_PROFILES(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GSD_TYPE_COLOR_PROFILES, GsdColorProfiles))
Packit 9ca0cf
#define GSD_IS_COLOR_PROFILES(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSD_TYPE_COLOR_PROFILES))
Packit 9ca0cf
Packit 9ca0cf
typedef struct GsdColorProfilesPrivate GsdColorProfilesPrivate;
Packit 9ca0cf
Packit 9ca0cf
typedef struct
Packit 9ca0cf
{
Packit 9ca0cf
        GObject                   parent;
Packit 9ca0cf
        GsdColorProfilesPrivate *priv;
Packit 9ca0cf
} GsdColorProfiles;
Packit 9ca0cf
Packit 9ca0cf
typedef struct
Packit 9ca0cf
{
Packit 9ca0cf
        GObjectClass    parent_class;
Packit 9ca0cf
} GsdColorProfilesClass;
Packit 9ca0cf
Packit 9ca0cf
GType                   gsd_color_profiles_get_type             (void);
Packit 9ca0cf
GQuark                  gsd_color_profiles_error_quark          (void);
Packit 9ca0cf
Packit 9ca0cf
GsdColorProfiles *      gsd_color_profiles_new                  (void);
Packit 9ca0cf
gboolean                gsd_color_profiles_start                (GsdColorProfiles *profiles,
Packit 9ca0cf
                                                                 GError **error);
Packit 9ca0cf
void                    gsd_color_profiles_stop                 (GsdColorProfiles *profiles);
Packit 9ca0cf
Packit 9ca0cf
G_END_DECLS
Packit 9ca0cf
Packit 9ca0cf
#endif /* __GSD_COLOR_PROFILES_H */