From e03f39502593b3caecbd760768a07c72d37b8abd Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Sun, 6 Apr 2008 16:21:46 +0000 Subject: Add goffset to the int64 arg type 2008-04-06 Johan Dahlin * codegen/argtypes.py (arg): Add goffset to the int64 arg type svn path=/trunk/; revision=757 --- ChangeLog | 4 ++++ codegen/argtypes.py | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 931be07..85fbebb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-04-06 Johan Dahlin + + * codegen/argtypes.py (arg): Add goffset to the int64 arg type + 2008-04-02 Paul Pogonyshev * 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) -- cgit