Change LGPL-2.1+ to LGPL-2.1-or-later
[platform/upstream/glib.git] / gio / gwin32inputstream.h
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright (C) 2006-2010 Red Hat, Inc.
4  *
5  * SPDX-License-Identifier: LGPL-2.1-or-later
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General
18  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
19  *
20  * Author: Alexander Larsson <alexl@redhat.com>
21  * Author: Tor Lillqvist <tml@iki.fi>
22  */
23
24 #ifndef __G_WIN32_INPUT_STREAM_H__
25 #define __G_WIN32_INPUT_STREAM_H__
26
27 #include <gio/gio.h>
28
29 G_BEGIN_DECLS
30
31 #define G_TYPE_WIN32_INPUT_STREAM         (g_win32_input_stream_get_type ())
32 #define G_WIN32_INPUT_STREAM(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_WIN32_INPUT_STREAM, GWin32InputStream))
33 #define G_WIN32_INPUT_STREAM_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_WIN32_INPUT_STREAM, GWin32InputStreamClass))
34 #define G_IS_WIN32_INPUT_STREAM(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_WIN32_INPUT_STREAM))
35 #define G_IS_WIN32_INPUT_STREAM_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_WIN32_INPUT_STREAM))
36 #define G_WIN32_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_WIN32_INPUT_STREAM, GWin32InputStreamClass))
37
38 /**
39  * GWin32InputStream:
40  *
41  * Implements #GInputStream for reading from selectable Windows file handles
42  **/
43 typedef struct _GWin32InputStream         GWin32InputStream;
44 typedef struct _GWin32InputStreamClass    GWin32InputStreamClass;
45 typedef struct _GWin32InputStreamPrivate  GWin32InputStreamPrivate;
46
47 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GWin32InputStream, g_object_unref)
48
49 struct _GWin32InputStream
50 {
51   GInputStream parent_instance;
52
53   /*< private >*/
54   GWin32InputStreamPrivate *priv;
55 };
56
57 struct _GWin32InputStreamClass
58 {
59   GInputStreamClass parent_class;
60
61   /*< private >*/
62   /* Padding for future expansion */
63   void (*_g_reserved1) (void);
64   void (*_g_reserved2) (void);
65   void (*_g_reserved3) (void);
66   void (*_g_reserved4) (void);
67   void (*_g_reserved5) (void);
68 };
69
70 GIO_AVAILABLE_IN_ALL
71 GType          g_win32_input_stream_get_type         (void) G_GNUC_CONST;
72
73 GIO_AVAILABLE_IN_ALL
74 GInputStream * g_win32_input_stream_new              (void              *handle,
75                                                       gboolean           close_handle);
76 GIO_AVAILABLE_IN_ALL
77 void           g_win32_input_stream_set_close_handle (GWin32InputStream *stream,
78                                                       gboolean           close_handle);
79 GIO_AVAILABLE_IN_ALL
80 gboolean       g_win32_input_stream_get_close_handle (GWin32InputStream *stream);
81 GIO_AVAILABLE_IN_ALL
82 void          *g_win32_input_stream_get_handle       (GWin32InputStream *stream);
83
84 G_END_DECLS
85
86 #endif /* __G_WIN32_INPUT_STREAM_H__ */