gwin32: Remove old win32 codepage ABI compat code
[glib.git] / gio / tests / gtlsconsoleinteraction.h
blob80fe32141250f8378b3682aaff9b17b25e8db709
1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2011 Collabora, Ltd.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Stef Walter <stefw@collabora.co.uk>
21 #ifndef __G_TLS_CONSOLE_INTERACTION_H__
22 #define __G_TLS_CONSOLE_INTERACTION_H__
24 #include <gio/gio.h>
26 G_BEGIN_DECLS
28 #define G_TYPE_TLS_CONSOLE_INTERACTION (g_tls_console_interaction_get_type ())
29 #define G_TLS_CONSOLE_INTERACTION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_TLS_CONSOLE_INTERACTION, GTlsConsoleInteraction))
30 #define G_TLS_CONSOLE_INTERACTION_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_TLS_CONSOLE_INTERACTION, GTlsConsoleInteractionClass))
31 #define G_IS_TLS_CONSOLE_INTERACTION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_TLS_CONSOLE_INTERACTION))
32 #define G_IS_TLS_CONSOLE_INTERACTION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_TLS_CONSOLE_INTERACTION))
33 #define G_TLS_CONSOLE_INTERACTION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_TLS_CONSOLE_INTERACTION, GTlsConsoleInteractionClass))
35 typedef struct _GTlsConsoleInteraction GTlsConsoleInteraction;
36 typedef struct _GTlsConsoleInteractionClass GTlsConsoleInteractionClass;
38 struct _GTlsConsoleInteraction
40 GTlsInteraction parent_instance;
43 struct _GTlsConsoleInteractionClass
45 GTlsInteractionClass parent_class;
48 GType g_tls_console_interaction_get_type (void) G_GNUC_CONST;
50 GTlsInteraction * g_tls_console_interaction_new (void);
52 G_END_DECLS
54 #endif /* __G_TLS_CONSOLE_INTERACTION_H__ */