mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-06 07:58:44 +02:00
giboxedinfo: Add a tag type for boxed types
Boxed types are already represented within `GIInfoType`, so they should have a `GType` representation as well. In an upcoming commit, this will allow us to represent the subtype relation between `GIBoxedInfo` and `GIRegisteredTypeInfo` too. Signed-off-by: Philip Withnall <pwithnall@gnome.org> Helps: #3216
This commit is contained in:
@@ -132,12 +132,20 @@ void gi_object_info_class_init (gpointer g_class,
|
||||
|
||||
struct _GIInterfaceInfo
|
||||
{
|
||||
GIBaseInfo parent;
|
||||
GIRegisteredTypeInfo parent;
|
||||
};
|
||||
|
||||
void gi_interface_info_class_init (gpointer g_class,
|
||||
gpointer class_data);
|
||||
|
||||
struct _GIBoxedInfo
|
||||
{
|
||||
GIBaseInfo parent;
|
||||
};
|
||||
|
||||
void gi_boxed_info_class_init (gpointer g_class,
|
||||
gpointer class_data);
|
||||
|
||||
struct _GIConstantInfo
|
||||
{
|
||||
GIBaseInfo parent;
|
||||
|
Reference in New Issue
Block a user