mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
ce43b11741
Original commit message from CVS: * gst/glib-compat.h: * gst/gstregistryxml.c: Convergence is near. Seriously.
30 lines
550 B
C
30 lines
550 B
C
/*
|
|
* glib-compat.c
|
|
* Functions copied from glib 2.6 and 2.8
|
|
*
|
|
* Copyright 2005 David Schleef <ds@schleef.org>
|
|
*/
|
|
|
|
#include <glib.h>
|
|
#if GLIB_CHECK_VERSION (2, 6, 0)
|
|
#include <glib/gstdio.h>
|
|
#endif
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#if !GLIB_CHECK_VERSION (2, 8, 0)
|
|
int g_mkdir_with_parents (const gchar *pathname, int mode);
|
|
#endif
|
|
|
|
#if !GLIB_CHECK_VERSION (2, 6, 0)
|
|
int g_mkdir (const gchar *filename, int mode);
|
|
#endif
|
|
|
|
#if !GLIB_CHECK_VERSION (2, 6, 0)
|
|
struct stat;
|
|
|
|
int g_stat (const gchar *filename, struct stat *buf);
|
|
#endif
|
|
|
|
G_END_DECLS
|
|
|