~ubuntu-branches/ubuntu/intrepid/glib2.0/intrepid

« back to all changes in this revision

Viewing changes to gio/gbufferedinputstream.h

  • Committer: Bazaar Package Importer
  • Author(s): Loic Minier
  • Date: 2008-09-03 00:51:29 UTC
  • mfrom: (1.2.47 upstream)
  • Revision ID: james.westby@ubuntu.com-20080903005129-cuvzg72uin744gd6
Tags: 2.18.0-1
* New upstream stable release, with API addition.
  - Update symbols file for new g_object_get_type() symbol and drop
    g_slice_debug_tree_statistics() which shouldn't have been exported in
    the first place.
  - Refresh patches 01_gettext-desktopfiles,
    02_usr_share_gnome_applications, and 03_blacklist-directories to apply
    cleanly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* GIO - GLib Input, Output and Streaming Library
2
 
 * 
 
2
 *
3
3
 * Copyright (C) 2006-2007 Red Hat, Inc.
4
4
 *
5
5
 * This library is free software; you can redistribute it and/or
17
17
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18
18
 * Boston, MA 02111-1307, USA.
19
19
 *
20
 
 * Author: Christian Kellner <gicmo@gnome.org> 
 
20
 * Author: Christian Kellner <gicmo@gnome.org>
21
21
 */
22
22
 
23
23
#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
40
40
 
41
41
/**
42
42
 * GBufferedInputStream:
43
 
 * 
 
43
 *
44
44
 * Implements #GFilterInputStream with a sized input buffer.
45
45
 **/
46
46
typedef struct _GBufferedInputStreamClass    GBufferedInputStreamClass;
56
56
 
57
57
struct _GBufferedInputStreamClass
58
58
{
59
 
 GFilterInputStreamClass parent_class;
 
59
  GFilterInputStreamClass parent_class;
60
60
 
61
61
  gssize   (* fill)        (GBufferedInputStream *stream,
62
62
                            gssize                count,
118
118
                                                       GCancellable          *cancellable,
119
119
                                                       GError               **error);
120
120
 
121
 
 
122
121
G_END_DECLS
123
122
 
124
123
#endif /* __G_BUFFERED_INPUT_STREAM_H__ */