Export g_charset_converter_get_num_fallbacks in header
[platform/upstream/glib.git] / gio / gseekable.h
index 6322e27..0cba50f 100644 (file)
@@ -1,5 +1,5 @@
 /* GIO - GLib Input, Output and Streaming Library
- * 
+ *
  * Copyright (C) 2006-2007 Red Hat, Inc.
  *
  * This library is free software; you can redistribute it and/or
@@ -38,9 +38,9 @@ G_BEGIN_DECLS
 
 /**
  * GSeekable:
- * 
+ *
  * Seek object for streaming operations.
- **/ 
+ **/
 typedef struct _GSeekableIface   GSeekableIface;
 
 /**
@@ -51,24 +51,24 @@ typedef struct _GSeekableIface   GSeekableIface;
  * @seek: Seeks to a location within a stream.
  * @can_truncate: Chekcs if truncation is suppored by the stream.
  * @truncate_fn: Truncates a stream.
- * 
+ *
  * Provides an interface for implementing seekable functionality on I/O Streams.
- **/ 
+ **/
 struct _GSeekableIface
 {
   GTypeInterface g_iface;
 
   /* Virtual Table */
-  
+
   goffset     (* tell)          (GSeekable    *seekable);
-  
+
   gboolean    (* can_seek)       (GSeekable    *seekable);
   gboolean    (* seek)          (GSeekable    *seekable,
                                  goffset       offset,
                                  GSeekType     type,
                                  GCancellable *cancellable,
                                  GError      **error);
-  
+
   gboolean    (* can_truncate)   (GSeekable    *seekable);
   gboolean    (* truncate_fn)    (GSeekable    *seekable,
                                  goffset       offset,
@@ -78,7 +78,7 @@ struct _GSeekableIface
   /* TODO: Async seek/truncate */
 };
 
-GType g_seekable_get_type (void) G_GNUC_CONST;
+GType    g_seekable_get_type     (void) G_GNUC_CONST;
 
 goffset  g_seekable_tell         (GSeekable     *seekable);
 gboolean g_seekable_can_seek     (GSeekable     *seekable);