mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-14 06:17:15 +01:00
girepository: Fix compatibility typedefs
This commit is contained in:
parent
ce1779b8dd
commit
36bf5dd721
@ -164,7 +164,7 @@ typedef GIBaseInfo GIErrorDomainInfo;
|
|||||||
*/
|
*/
|
||||||
typedef struct _GIUnresolvedInfo GIUnresolvedInfo;
|
typedef struct _GIUnresolvedInfo GIUnresolvedInfo;
|
||||||
|
|
||||||
typedef union
|
union _GIArgument
|
||||||
{
|
{
|
||||||
gboolean v_boolean;
|
gboolean v_boolean;
|
||||||
gint8 v_int8;
|
gint8 v_int8;
|
||||||
@ -187,7 +187,8 @@ typedef union
|
|||||||
gsize v_size;
|
gsize v_size;
|
||||||
gchar * v_string;
|
gchar * v_string;
|
||||||
gpointer v_pointer;
|
gpointer v_pointer;
|
||||||
} GIArgument;
|
};
|
||||||
|
typedef union _GIArgument GIArgument;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GIInfoType:
|
* GIInfoType:
|
||||||
@ -440,8 +441,8 @@ typedef enum
|
|||||||
|
|
||||||
#ifndef __GI_SCANNER__
|
#ifndef __GI_SCANNER__
|
||||||
/* backwards compatibility */
|
/* backwards compatibility */
|
||||||
typedef union GIArgument GArgument;
|
typedef union _GIArgument GArgument;
|
||||||
typedef union GITypelib GTypelib;
|
typedef struct _GITypelib GTypelib;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user