Blame egg/mock-interaction.h

Packit b00eeb
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
Packit b00eeb
/* mock-interaction.h
Packit b00eeb
Packit b00eeb
   Copyright (C) 2011 Collabora Ltd
Packit b00eeb
Packit b00eeb
   The Gnome Keyring Library is free software; you can redistribute it and/or
Packit b00eeb
   modify it under the terms of the GNU Library General Public License as
Packit b00eeb
   published by the Free Software Foundation; either version 2 of the
Packit b00eeb
   License, or (at your option) any later version.
Packit b00eeb
Packit b00eeb
   The Gnome Keyring Library is distributed in the hope that it will be useful,
Packit b00eeb
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit b00eeb
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit b00eeb
   Library General Public License for more details.
Packit b00eeb
Packit b00eeb
   You should have received a copy of the GNU Library General Public
Packit b00eeb
   License along with the Gnome Library; see the file COPYING.LIB.  If not,
Packit b00eeb
   see <http://www.gnu.org/licenses/>.
Packit b00eeb
Packit b00eeb
   Author: Stef Walter <stefw@collabora.co.uk>
Packit b00eeb
*/
Packit b00eeb
Packit b00eeb
#ifndef MOCK_INTERACTION_H
Packit b00eeb
#define MOCK_INTERACTION_H
Packit b00eeb
Packit b00eeb
#include <gio/gio.h>
Packit b00eeb
Packit b00eeb
G_BEGIN_DECLS
Packit b00eeb
Packit b00eeb
#define MOCK_TYPE_INTERACTION    (mock_interaction_get_type ())
Packit b00eeb
#define MOCK_INTERACTION(obj)    (G_TYPE_CHECK_INSTANCE_CAST ((obj), MOCK_TYPE_INTERACTION, MockInteraction))
Packit b00eeb
#define MOCK_IS_INTERACTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MOCK_TYPE_INTERACTION))
Packit b00eeb
Packit b00eeb
typedef struct _MockInteraction MockInteraction;
Packit b00eeb
Packit b00eeb
GType               mock_interaction_get_type               (void) G_GNUC_CONST;
Packit b00eeb
Packit b00eeb
GTlsInteraction *   mock_interaction_new                    (const gchar *password);
Packit b00eeb
Packit b00eeb
G_END_DECLS
Packit b00eeb
Packit b00eeb
#endif /* MOCK_INTERACTION_H */