summaryrefslogtreecommitdiffstats
path: root/gobject/pygobject-private.h
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2005-07-08 14:27:30 +0000
committerJohan Dahlin <johan@src.gnome.org>2005-07-08 14:27:30 +0000
commit6a1807bcce49bf88eb786a78478e7780801c7a36 (patch)
tree0dc48567a7cc88c7c93560aabddffc08d028dada /gobject/pygobject-private.h
parent302a0be1855356577a8869c34fa90bface8d4f00 (diff)
downloadpygobject-6a1807bcce49bf88eb786a78478e7780801c7a36.tar.gz
pygobject-6a1807bcce49bf88eb786a78478e7780801c7a36.tar.xz
pygobject-6a1807bcce49bf88eb786a78478e7780801c7a36.zip
Add GObject support, patch mostly based on Iņaki and Gustavos work.
* gobject/gobjectmodule.c: (initgobject): * gobject/pygobject-private.h: * gobject/pygobject.c: (pyg_props_iter_dealloc), (pygobject_props_iter_next), (PyGProps_dealloc), (build_parameter_list), (PyGProps_getattro), (PyGProps_setattro), (pygobject_props_traverse), (pygobject_props_get_iter), (PyGProps_length), (pyg_props_descr_descr_get): * tests/Makefile.am: Add GObject support, patch mostly based on Iņaki and Gustavos work. Unittests added, fixes #81879
Diffstat (limited to 'gobject/pygobject-private.h')
-rw-r--r--gobject/pygobject-private.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gobject/pygobject-private.h b/gobject/pygobject-private.h
index 205d255..4fd48e4 100644
--- a/gobject/pygobject-private.h
+++ b/gobject/pygobject-private.h
@@ -93,6 +93,9 @@ extern PyTypeObject PyGObject_MetaType;
/* from pygobject.h */
extern PyTypeObject PyGObject_Type;
extern PyTypeObject PyGInterface_Type;
+extern PyTypeObject PyGProps_Type;
+extern PyTypeObject PyGPropsDescr_Type;
+extern PyTypeObject PyGPropsIter_Type;
void pygobject_register_class (PyObject *dict,
const gchar *type_name,