X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=glib%2Fglib-private.h;h=29fa2f26714dccb0aced9c888e5a73a1e0d8dbe7;hb=ea4f9ce8a060d53cbc299e4c384089f6cc926caa;hp=ef927770f76092f3fb4cf2170b513c44e531f7cb;hpb=9bf59d4a14b3fc4bb62f10c3665e99f9d8788bdc;p=platform%2Fupstream%2Fglib.git diff --git a/glib/glib-private.h b/glib/glib-private.h index ef92777..29fa2f2 100644 --- a/glib/glib-private.h +++ b/glib/glib-private.h @@ -12,37 +12,76 @@ * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library; if not, see . */ #ifndef __GLIB_PRIVATE_H__ #define __GLIB_PRIVATE_H__ #include - #include "gwakeup.h" +#include "gvariant-vectors.h" + +#if defined(__GNUC__) +# define _g_alignof(type) (__alignof__ (type)) +#else +# define _g_alignof(type) (G_STRUCT_OFFSET (struct { char a; type b; }, b)) +#endif + +GMainContext * g_get_worker_context (void); +gboolean g_check_setuid (void); +GMainContext * g_main_context_new_with_next_id (guint next_id); +void g_variant_to_vectors (GVariant *value, + GVariantVectors *vectors); +GVariant * g_variant_from_vectors (const GVariantType *type, + GVariantVector *vectors, + gsize n_vectors, + gsize size, + gboolean trusted); -G_BEGIN_DECLS +#ifdef G_OS_WIN32 +gchar *_glib_get_dll_directory (void); +GLIB_AVAILABLE_IN_ALL +gchar *_glib_get_locale_dir (void); +#endif + +GDir * g_dir_open_with_errno (const gchar *path, guint flags); +GDir * g_dir_new_from_dirp (gpointer dirp); #define GLIB_PRIVATE_CALL(symbol) (glib__private__()->symbol) typedef struct { /* See gwakeup.c */ - GWakeup * (*g_wakeup_new) (void); - void (*g_wakeup_free) (GWakeup *wakeup); - void (*g_wakeup_get_pollfd) (GWakeup *wakeup, - GPollFD *poll_fd); - void (*g_wakeup_signal) (GWakeup *wakeup); - void (*g_wakeup_acknowledge) (GWakeup *wakeup); - - /* Add other private functions here, initialize them in gutils.c */ -} GLibPrivateVTable; + GWakeup * (* g_wakeup_new) (void); + void (* g_wakeup_free) (GWakeup *wakeup); + void (* g_wakeup_get_pollfd) (GWakeup *wakeup, + GPollFD *poll_fd); + void (* g_wakeup_signal) (GWakeup *wakeup); + void (* g_wakeup_acknowledge) (GWakeup *wakeup); -GLibPrivateVTable *glib__private__ (void); + /* See gmain.c */ + GMainContext * (* g_get_worker_context) (void); + gboolean (* g_check_setuid) (void); + GMainContext * (* g_main_context_new_with_next_id) (guint next_id); -G_END_DECLS + GDir * (* g_dir_open_with_errno) (const gchar *path, + guint flags); + GDir * (* g_dir_new_from_dirp) (gpointer dirp); + + void (* g_variant_to_vectors) (GVariant *value, + GVariantVectors *vectors); + GVariant * (* g_variant_from_vectors) (const GVariantType *type, + GVariantVector *vectors, + gsize n_vectors, + gsize size, + gboolean trusted); + + + /* Add other private functions here, initialize them in glib-private.c */ +} GLibPrivateVTable; + +GLIB_AVAILABLE_IN_ALL +GLibPrivateVTable *glib__private__ (void); -#endif /* __G_MAIN_H__ */ +#endif /* __GLIB_PRIVATE_H__ */