It is 'registered', not 'registred'
[glib.git] / gio / gunixfdmessage.h
blob3bfa05822013b710699133a62386e5f18072e3c5
1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2009 Codethink Limited
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License as published
7 * by the Free Software Foundation; either version 2 of the licence or (at
8 * 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, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Authors: Ryan Lortie <desrt@desrt.ca>
23 #ifndef __G_UNIX_FD_MESSAGE_H__
24 #define __G_UNIX_FD_MESSAGE_H__
26 #include <gio/gio.h>
27 #include <gio/gunixfdlist.h>
29 G_BEGIN_DECLS
31 #define G_TYPE_UNIX_FD_MESSAGE (g_unix_fd_message_get_type ())
32 #define G_UNIX_FD_MESSAGE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
33 G_TYPE_UNIX_FD_MESSAGE, GUnixFDMessage))
34 #define G_UNIX_FD_MESSAGE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
35 G_TYPE_UNIX_FD_MESSAGE, GUnixFDMessageClass))
36 #define G_IS_UNIX_FD_MESSAGE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
37 G_TYPE_UNIX_FD_MESSAGE))
38 #define G_IS_UNIX_FD_MESSAGE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
39 G_TYPE_UNIX_FD_MESSAGE))
40 #define G_UNIX_FD_MESSAGE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
41 G_TYPE_UNIX_FD_MESSAGE, GUnixFDMessageClass))
43 typedef struct _GUnixFDMessagePrivate GUnixFDMessagePrivate;
44 typedef struct _GUnixFDMessageClass GUnixFDMessageClass;
45 typedef struct _GUnixFDMessage GUnixFDMessage;
47 struct _GUnixFDMessageClass
49 GSocketControlMessageClass parent_class;
51 /*< private >*/
53 /* Padding for future expansion */
54 void (*_g_reserved1) (void);
55 void (*_g_reserved2) (void);
58 struct _GUnixFDMessage
60 GSocketControlMessage parent_instance;
61 GUnixFDMessagePrivate *priv;
64 GType g_unix_fd_message_get_type (void) G_GNUC_CONST;
65 GSocketControlMessage * g_unix_fd_message_new_with_fd_list (GUnixFDList *fd_list);
66 GSocketControlMessage * g_unix_fd_message_new (void);
68 GUnixFDList * g_unix_fd_message_get_fd_list (GUnixFDMessage *message);
70 gint * g_unix_fd_message_steal_fds (GUnixFDMessage *message,
71 gint *length);
72 gboolean g_unix_fd_message_append_fd (GUnixFDMessage *message,
73 gint fd,
74 GError **error);
76 G_END_DECLS
78 #endif /* __G_UNIX_FD_MESSAGE_H__ */