summaryrefslogtreecommitdiffstats
path: root/gobject/pygobject-private.h
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2004-07-17 16:38:46 +0000
committerJohan Dahlin <johan@src.gnome.org>2004-07-17 16:38:46 +0000
commitb889f44c6adeaf10d5e1ae0a2e69ef5ee218ccad (patch)
tree6db2e280696773afe0d2d54425441ed1abc5ee4b /gobject/pygobject-private.h
parent8238d9cc0fce600328f50efa139db1f575058ae8 (diff)
downloadpygobject-b889f44c6adeaf10d5e1ae0a2e69ef5ee218ccad.tar.gz
pygobject-b889f44c6adeaf10d5e1ae0a2e69ef5ee218ccad.tar.xz
pygobject-b889f44c6adeaf10d5e1ae0a2e69ef5ee218ccad.zip
gtk/*.override
* gtk/*.override * codegen/codegen.py: * codegen/argtypes.py: Update for enums * pygtype.c (pyg_value_as_pyobject): Use new enum/flag functions * pygenum.[ch]: Handle GFlag * pygflags.[ch]: Handle GFlag * atk-types.defs: Fix gtype-id for all enums * gobjectmodule.c (initgobject): Clean up and add convinience macros * tests/enum.py: New file * tests/common.py: New file, also stole from gst-python
Diffstat (limited to 'gobject/pygobject-private.h')
-rw-r--r--gobject/pygobject-private.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gobject/pygobject-private.h b/gobject/pygobject-private.h
index 38eff22..da340c7 100644
--- a/gobject/pygobject-private.h
+++ b/gobject/pygobject-private.h
@@ -8,7 +8,6 @@
#define _INSIDE_PYGOBJECT_
#include "pygobject.h"
-
/* from gobjectmodule.c */
extern struct _PyGObject_Functions pygobject_api_functions;
#define pyg_block_threads() G_STMT_START { \
@@ -108,4 +107,6 @@ PyObject * pyg_pointer_new (GType pointer_type, gpointer pointer);
extern PyTypeObject PyGParamSpec_Type;
PyObject *pyg_param_spec_new (GParamSpec *pspec);
+extern char * pyg_constant_strip_prefix(gchar *name, const gchar *strip_prefix);
+
#endif