summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--codegen/argtypes.py1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 931be07..85fbebb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-04-06 Johan Dahlin <johan@gnome.org>
+
+ * codegen/argtypes.py (arg): Add goffset to the int64 arg type
+
2008-04-02 Paul Pogonyshev <pogonyshev@gmx.net>
* gobject/pygenum.c: bug #428732
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)