diff options
author | Owen Taylor <otaylor@src.gnome.org> | 2008-11-10 23:58:49 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2008-11-10 23:58:49 +0000 |
commit | eceeb044de0a3dd137fa15da7027ce706504bc94 (patch) | |
tree | 6585b29a4838c8456799bdf45eacc3f66def26c6 /girepository/girnode.h | |
parent | 5229e674abb42c35c3ae5a548ce3a6e66215c1aa (diff) | |
download | gobject-introspection-eceeb044de0a3dd137fa15da7027ce706504bc94.tar.gz |
Bug 560248 – "disguised structures"
Certain types like GIConv and GdkAtom are pointers internally but don't
look like pointers when referenced. They have the form.
typedef struct _X *X;
Parse these as structures/records but mark them in the gir with a 'disguised'
attribute so that we know that they need special handling.
In the typelib treat them like any other structure.
svn path=/trunk/; revision=872
Diffstat (limited to 'girepository/girnode.h')
-rw-r--r-- | girepository/girnode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/girepository/girnode.h b/girepository/girnode.h index 58b18c8d..a0dd9ee0 100644 --- a/girepository/girnode.h +++ b/girepository/girnode.h @@ -278,6 +278,7 @@ struct _GIrNodeStruct GIrNode node; gboolean deprecated; + gboolean disguised; gchar *gtype_name; gchar *gtype_init; |