2 * Copyright © 2009, 2010 Codethink Limited
3 * Copyright © 2011 Collabora Ltd.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the licence, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Ryan Lortie <desrt@desrt.ca>
19 * Stef Walter <stefw@collabora.co.uk>
25 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
26 #error "Only <glib.h> can be included directly."
29 #include <glib/gtypes.h>
30 #include <glib/garray.h>
35 GBytes * g_bytes_new (gconstpointer data,
39 GBytes * g_bytes_new_take (gpointer data,
43 GBytes * g_bytes_new_static (gconstpointer data,
47 GBytes * g_bytes_new_with_free_func (gconstpointer data,
49 GDestroyNotify free_func,
53 GBytes * g_bytes_new_from_bytes (GBytes *bytes,
58 gconstpointer g_bytes_get_data (GBytes *bytes,
62 gsize g_bytes_get_size (GBytes *bytes);
65 GBytes * g_bytes_ref (GBytes *bytes);
68 void g_bytes_unref (GBytes *bytes);
71 gpointer g_bytes_unref_to_data (GBytes *bytes,
75 GByteArray * g_bytes_unref_to_array (GBytes *bytes);
78 guint g_bytes_hash (gconstpointer bytes);
81 gboolean g_bytes_equal (gconstpointer bytes1,
82 gconstpointer bytes2);
85 gint g_bytes_compare (gconstpointer bytes1,
86 gconstpointer bytes2);
90 #endif /* __G_BYTES_H__ */