mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
taglist: Work around gtk-doc problem
This commit is contained in:
parent
2e05ca5de4
commit
f9f0346f3f
1 changed files with 4 additions and 0 deletions
|
@ -150,11 +150,15 @@ typedef enum {
|
|||
*
|
||||
* Opaque #GstTagList data structure.
|
||||
*/
|
||||
#ifdef _FOOL_GTK_DOC_
|
||||
typedef struct _GstTagList GstTagList;
|
||||
#else
|
||||
#ifdef IN_GOBJECT_INTROSPECTION
|
||||
typedef struct _GstTagList GstTagList;
|
||||
#else
|
||||
typedef GstStructure GstTagList;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define GST_TAG_LIST(x) ((GstTagList *) (x))
|
||||
#define GST_IS_TAG_LIST(x) ((x) != NULL && gst_is_tag_list (GST_TAG_LIST (x)))
|
||||
|
|
Loading…
Reference in a new issue