GVariant: support serialising to GVariantVectors
[platform/upstream/glib.git] / glib / glib-private.h
1 /* glib-private.h - GLib-internal private API, shared between glib, gobject, gio
2  * Copyright (C) 2011 Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef __GLIB_PRIVATE_H__
19 #define __GLIB_PRIVATE_H__
20
21 #include <glib.h>
22 #include "gwakeup.h"
23 #include "gvariant-vectors.h"
24
25 #if defined(__GNUC__)
26 # define _g_alignof(type) (__alignof__ (type))
27 #else
28 # define _g_alignof(type) (G_STRUCT_OFFSET (struct { char a; type b; }, b))
29 #endif
30
31 GMainContext *          g_get_worker_context            (void);
32 gboolean                g_check_setuid                  (void);
33 GMainContext *          g_main_context_new_with_next_id (guint next_id);
34 void                    g_variant_to_vectors            (GVariant *value,
35                                                          GVariantVectors *vectors);
36
37 #ifdef G_OS_WIN32
38 gchar *_glib_get_dll_directory (void);
39 GLIB_AVAILABLE_IN_ALL
40 gchar *_glib_get_locale_dir    (void);
41 #endif
42
43 GDir * g_dir_open_with_errno (const gchar *path, guint flags);
44 GDir * g_dir_new_from_dirp (gpointer dirp);
45
46 #define GLIB_PRIVATE_CALL(symbol) (glib__private__()->symbol)
47
48 typedef struct {
49   /* See gwakeup.c */
50   GWakeup *             (* g_wakeup_new)                (void);
51   void                  (* g_wakeup_free)               (GWakeup *wakeup);
52   void                  (* g_wakeup_get_pollfd)         (GWakeup *wakeup,
53                                                         GPollFD *poll_fd);
54   void                  (* g_wakeup_signal)             (GWakeup *wakeup);
55   void                  (* g_wakeup_acknowledge)        (GWakeup *wakeup);
56
57   /* See gmain.c */
58   GMainContext *        (* g_get_worker_context)        (void);
59
60   gboolean              (* g_check_setuid)              (void);
61   GMainContext *        (* g_main_context_new_with_next_id) (guint next_id);
62
63   GDir *                (* g_dir_open_with_errno)       (const gchar *path,
64                                                          guint        flags);
65   GDir *                (* g_dir_new_from_dirp)         (gpointer dirp);
66
67   void                  (* g_variant_to_vectors)        (GVariant    *value,
68                                                          GVariantVectors *vectors);
69
70
71   /* Add other private functions here, initialize them in glib-private.c */
72 } GLibPrivateVTable;
73
74 GLIB_AVAILABLE_IN_ALL
75 GLibPrivateVTable *glib__private__ (void);
76
77 #endif /* __GLIB_PRIVATE_H__ */