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

« back to all changes in this revision

Viewing changes to gio/gunixoutputstream.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
36
36
 
37
37
/**
38
38
 * GUnixOutputStream:
39
 
 * 
 
39
 *
40
40
 * Implements #GOutputStream for outputting to selectable unix file descriptors
41
41
 **/
42
42
typedef struct _GUnixOutputStream         GUnixOutputStream;
64
64
  void (*_g_reserved5) (void);
65
65
};
66
66
 
67
 
GType g_unix_output_stream_get_type (void) G_GNUC_CONST;
 
67
GType           g_unix_output_stream_get_type (void) G_GNUC_CONST;
68
68
 
69
 
GOutputStream *g_unix_output_stream_new (int fd,
70
 
                                         gboolean close_fd_at_close);
 
69
GOutputStream * g_unix_output_stream_new      (int      fd,
 
70
                                               gboolean close_fd_at_close);
71
71
 
72
72
G_END_DECLS
73
73