mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
bdb6a9aeec
Now matches upstream glib definition.
35 lines
495 B
C
35 lines
495 B
C
/*
|
|
* glib-compat.c
|
|
* Functions copied from glib 2.10
|
|
*
|
|
* Copyright 2005 David Schleef <ds@schleef.org>
|
|
*/
|
|
|
|
#ifndef __GLIB_COMPAT_PRIVATE_H__
|
|
#define __GLIB_COMPAT_PRIVATE_H__
|
|
|
|
#include <glib.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#if !GLIB_CHECK_VERSION(2,25,0)
|
|
|
|
#if defined (_MSC_VER) && !defined(_WIN64)
|
|
typedef struct _stat32 GStatBuf;
|
|
#else
|
|
typedef struct stat GStatBuf;
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if GLIB_CHECK_VERSION(2,26,0)
|
|
#define GLIB_HAS_GDATETIME
|
|
#endif
|
|
|
|
/* copies */
|
|
|
|
/* adaptations */
|
|
|
|
G_END_DECLS
|
|
|
|
#endif
|