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

« back to all changes in this revision

Viewing changes to gio/gdatainputstream.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
42
42
 * GDataInputStream:
43
43
 * @parent: a #GBufferedInputStream.
44
44
 *
45
 
 * An implementation of #GBufferedInputStream that allows for high-level 
 
45
 * An implementation of #GBufferedInputStream that allows for high-level
46
46
 * data manipulation of arbitrary data (including binary operations).
47
47
 **/
48
48
typedef struct _GDataInputStreamClass    GDataInputStreamClass;
58
58
 
59
59
struct _GDataInputStreamClass
60
60
{
61
 
 GBufferedInputStreamClass parent_class;
 
61
  GBufferedInputStreamClass parent_class;
 
62
 
62
63
  /*< private >*/
63
64
  /* Padding for future expansion */
64
65
  void (*_g_reserved1) (void);
68
69
  void (*_g_reserved5) (void);
69
70
};
70
71
 
71
 
GType          g_data_input_stream_get_type   (void) G_GNUC_CONST;
72
 
GDataInputStream*  g_data_input_stream_new        (GInputStream *base_stream);
 
72
GType                  g_data_input_stream_get_type         (void) G_GNUC_CONST;
 
73
GDataInputStream *     g_data_input_stream_new              (GInputStream            *base_stream);
73
74
 
74
75
void                   g_data_input_stream_set_byte_order   (GDataInputStream        *stream,
75
76
                                                             GDataStreamByteOrder     order);