summaryrefslogtreecommitdiffstats
path: root/codegen
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2008-04-06 16:21:46 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-04-06 16:21:46 +0000
commite03f39502593b3caecbd760768a07c72d37b8abd (patch)
treea98d27f3d5d2a2ae6dfa5056b448d34f05c1253f /codegen
parent8282c9960218a9cd20db5146cf924460701949f8 (diff)
downloadpygobject-e03f39502593b3caecbd760768a07c72d37b8abd.tar.gz
pygobject-e03f39502593b3caecbd760768a07c72d37b8abd.tar.xz
pygobject-e03f39502593b3caecbd760768a07c72d37b8abd.zip
Add goffset to the int64 arg type
2008-04-06 Johan Dahlin <johan@gnome.org> * codegen/argtypes.py (arg): Add goffset to the int64 arg type svn path=/trunk/; revision=757
Diffstat (limited to 'codegen')
-rw-r--r--codegen/argtypes.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/codegen/argtypes.py b/codegen/argtypes.py
index 99a3563..061c6f8 100644
--- a/codegen/argtypes.py
+++ b/codegen/argtypes.py
@@ -994,6 +994,7 @@ matcher.register('gulong', arg)
arg = Int64Arg()
matcher.register('gint64', arg)
matcher.register('long-long', arg)
+matcher.register('goffset', arg)
arg = UInt64Arg()
matcher.register('guint64', arg)