diff options
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | gio/gio.defs | 24 |
2 files changed, 3 insertions, 24 deletions
@@ -1,5 +1,8 @@ 2008-04-06 Johan Dahlin <johan@gnome.org> + * gio/gio.defs: Remove g_file_output_stream_truncate, + g_file_output_stream_tell and g_file_input_stream_tell + * Makefile.am: * gio/gfileenumerator.override (_wrap_g_file_enumerator_tp_iter): Implement the python iteration protocol on GFileEnumerator diff --git a/gio/gio.defs b/gio/gio.defs index 0a28851..43847e7 100644 --- a/gio/gio.defs +++ b/gio/gio.defs @@ -2572,12 +2572,6 @@ ) ) -(define-method tell - (of-object "GFileInputStream") - (c-name "g_file_input_stream_tell") - (return-type "goffset") -) - (define-method seek (of-object "GFileInputStream") (c-name "g_file_input_stream_seek") @@ -2722,12 +2716,6 @@ (return-type "char*") ) -(define-method tell - (of-object "GFileOutputStream") - (c-name "g_file_output_stream_tell") - (return-type "goffset") -) - (define-method seek (of-object "GFileOutputStream") (c-name "g_file_output_stream_seek") @@ -2740,18 +2728,6 @@ ) ) -(define-method truncate - (of-object "GFileOutputStream") - (c-name "g_file_output_stream_truncate") - (return-type "gboolean") - (parameters - '("goffset" "size") - '("GCancellable*" "cancellable" (null-ok) (default "NULL")) - '("GError**" "error") - ) -) - - ;; From gfilterinputstream.h |
