gst/gst.h: Include glib-compat.h.
[platform/upstream/gstreamer.git] / gst / glib-compat-private.h
1 /*
2  * glib-compat.c
3  * Functions copied from glib 2.8
4  *
5  * Copyright 2005 David Schleef <ds@schleef.org>
6  */
7
8 #include "gst_private.h" /* for g_warning */
9 #include <glib.h>
10
11 G_BEGIN_DECLS
12
13 /* copies */
14 #if !GLIB_CHECK_VERSION (2, 8, 0)
15 int g_mkdir_with_parents (const gchar *pathname, int          mode);
16 #endif
17
18 /* adaptations */
19 #include <glib-object.h>
20 GFlagsValue*
21 gst_flags_get_first_value (GFlagsClass *flags_class,
22                            guint        value);
23
24 GObject*
25 g_value_dup_gst_object (const GValue *value);
26 G_END_DECLS
27