gdataoutputstream.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright (C) 2006-2007 Red Hat, Inc.
  4. *
  5. * SPDX-License-Identifier: LGPL-2.1-or-later
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General
  18. * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  19. *
  20. * Author: Alexander Larsson <alexl@redhat.com>
  21. */
  22. #ifndef __G_DATA_OUTPUT_STREAM_H__
  23. #define __G_DATA_OUTPUT_STREAM_H__
  24. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  25. #error "Only <gio/gio.h> can be included directly."
  26. #endif
  27. #include <gio/gfilteroutputstream.h>
  28. G_BEGIN_DECLS
  29. #define G_TYPE_DATA_OUTPUT_STREAM (g_data_output_stream_get_type ())
  30. #define G_DATA_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DATA_OUTPUT_STREAM, GDataOutputStream))
  31. #define G_DATA_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DATA_OUTPUT_STREAM, GDataOutputStreamClass))
  32. #define G_IS_DATA_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DATA_OUTPUT_STREAM))
  33. #define G_IS_DATA_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DATA_OUTPUT_STREAM))
  34. #define G_DATA_OUTPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DATA_OUTPUT_STREAM, GDataOutputStreamClass))
  35. typedef struct _GDataOutputStream GDataOutputStream;
  36. typedef struct _GDataOutputStreamClass GDataOutputStreamClass;
  37. typedef struct _GDataOutputStreamPrivate GDataOutputStreamPrivate;
  38. struct _GDataOutputStream
  39. {
  40. GFilterOutputStream parent_instance;
  41. /*< private >*/
  42. GDataOutputStreamPrivate *priv;
  43. };
  44. struct _GDataOutputStreamClass
  45. {
  46. GFilterOutputStreamClass parent_class;
  47. /*< private >*/
  48. /* Padding for future expansion */
  49. void (*_g_reserved1) (void);
  50. void (*_g_reserved2) (void);
  51. void (*_g_reserved3) (void);
  52. void (*_g_reserved4) (void);
  53. void (*_g_reserved5) (void);
  54. };
  55. GIO_AVAILABLE_IN_ALL
  56. GType g_data_output_stream_get_type (void) G_GNUC_CONST;
  57. GIO_AVAILABLE_IN_ALL
  58. GDataOutputStream * g_data_output_stream_new (GOutputStream *base_stream);
  59. GIO_AVAILABLE_IN_ALL
  60. void g_data_output_stream_set_byte_order (GDataOutputStream *stream,
  61. GDataStreamByteOrder order);
  62. GIO_AVAILABLE_IN_ALL
  63. GDataStreamByteOrder g_data_output_stream_get_byte_order (GDataOutputStream *stream);
  64. GIO_AVAILABLE_IN_ALL
  65. gboolean g_data_output_stream_put_byte (GDataOutputStream *stream,
  66. guchar data,
  67. GCancellable *cancellable,
  68. GError **error);
  69. GIO_AVAILABLE_IN_ALL
  70. gboolean g_data_output_stream_put_int16 (GDataOutputStream *stream,
  71. gint16 data,
  72. GCancellable *cancellable,
  73. GError **error);
  74. GIO_AVAILABLE_IN_ALL
  75. gboolean g_data_output_stream_put_uint16 (GDataOutputStream *stream,
  76. guint16 data,
  77. GCancellable *cancellable,
  78. GError **error);
  79. GIO_AVAILABLE_IN_ALL
  80. gboolean g_data_output_stream_put_int32 (GDataOutputStream *stream,
  81. gint32 data,
  82. GCancellable *cancellable,
  83. GError **error);
  84. GIO_AVAILABLE_IN_ALL
  85. gboolean g_data_output_stream_put_uint32 (GDataOutputStream *stream,
  86. guint32 data,
  87. GCancellable *cancellable,
  88. GError **error);
  89. GIO_AVAILABLE_IN_ALL
  90. gboolean g_data_output_stream_put_int64 (GDataOutputStream *stream,
  91. gint64 data,
  92. GCancellable *cancellable,
  93. GError **error);
  94. GIO_AVAILABLE_IN_ALL
  95. gboolean g_data_output_stream_put_uint64 (GDataOutputStream *stream,
  96. guint64 data,
  97. GCancellable *cancellable,
  98. GError **error);
  99. GIO_AVAILABLE_IN_ALL
  100. gboolean g_data_output_stream_put_string (GDataOutputStream *stream,
  101. const char *str,
  102. GCancellable *cancellable,
  103. GError **error);
  104. G_END_DECLS
  105. #endif /* __G_DATA_OUTPUT_STREAM_H__ */