Imported Upstream version 3.3.1
[platform/upstream/pygobject2.git] / gi / pygi-property.h
index d641b01..31d0e42 100644 (file)
 #include <Python.h>
 #include <girepository.h>
 
-#include "pygobject-internal.h"
+#include "pygi.h"
 
-PyObject *
-pygi_get_property_value (PyGObject *instance,
-                         GParamSpec *pspec);
+PyObject *pygi_get_property_value_real (PyGObject *instance,
+                                        const gchar *attr_name);
 
-PyObject *
-pygi_get_property_value_by_name (PyGObject *self,
-                                 gchar *param_name);
-PyObject *
-pygi_call_do_get_property       (PyObject *instance,
-                                 GParamSpec *pspec);
-
-gint
-pygi_set_property_value (PyGObject *instance,
-                         GParamSpec *pspec,
-                         PyObject *py_value);
+gint pygi_set_property_value_real (PyGObject *instance,
+                                   const gchar *attr_name,
+                                   PyObject *py_value);
 
 #endif /* __PYGI_PROPERTY_H__ */