1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
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.1 of the License, 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
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Alexander Larsson <alexl@redhat.com>
21 #ifndef __G_RESOURCE_H__
22 #define __G_RESOURCE_H__
24 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
25 #error "Only <gio/gio.h> can be included directly."
28 #include <gio/giotypes.h>
35 * The #GType for #GResource.
37 #define G_TYPE_RESOURCE (g_resource_get_type ())
43 * Error domain for #GResource. Errors in this domain will be from the
44 * #GResourceError enumeration. See #GError for more information on
47 #define G_RESOURCE_ERROR (g_resource_error_quark ())
48 GLIB_AVAILABLE_IN_2_32
49 GQuark
g_resource_error_quark (void);
51 typedef struct _GStaticResource GStaticResource
;
53 struct _GStaticResource
{
58 GStaticResource
*next
;
62 GLIB_AVAILABLE_IN_2_32
63 GType
g_resource_get_type (void) G_GNUC_CONST
;
64 GLIB_AVAILABLE_IN_2_32
65 GResource
* g_resource_new_from_data (GBytes
*data
,
67 GLIB_AVAILABLE_IN_2_32
68 GResource
* g_resource_ref (GResource
*resource
);
69 GLIB_AVAILABLE_IN_2_32
70 void g_resource_unref (GResource
*resource
);
71 GLIB_AVAILABLE_IN_2_32
72 GResource
* g_resource_load (const gchar
*filename
,
74 GLIB_AVAILABLE_IN_2_32
75 GInputStream
*g_resource_open_stream (GResource
*resource
,
77 GResourceLookupFlags lookup_flags
,
79 GLIB_AVAILABLE_IN_2_32
80 GBytes
* g_resource_lookup_data (GResource
*resource
,
82 GResourceLookupFlags lookup_flags
,
84 GLIB_AVAILABLE_IN_2_32
85 char ** g_resource_enumerate_children (GResource
*resource
,
87 GResourceLookupFlags lookup_flags
,
89 GLIB_AVAILABLE_IN_2_32
90 gboolean
g_resource_get_info (GResource
*resource
,
92 GResourceLookupFlags lookup_flags
,
97 GLIB_AVAILABLE_IN_2_32
98 void g_resources_register (GResource
*resource
);
99 GLIB_AVAILABLE_IN_2_32
100 void g_resources_unregister (GResource
*resource
);
101 GLIB_AVAILABLE_IN_2_32
102 GInputStream
*g_resources_open_stream (const char *path
,
103 GResourceLookupFlags lookup_flags
,
105 GLIB_AVAILABLE_IN_2_32
106 GBytes
* g_resources_lookup_data (const char *path
,
107 GResourceLookupFlags lookup_flags
,
109 GLIB_AVAILABLE_IN_2_32
110 char ** g_resources_enumerate_children (const char *path
,
111 GResourceLookupFlags lookup_flags
,
113 GLIB_AVAILABLE_IN_2_32
114 gboolean
g_resources_get_info (const char *path
,
115 GResourceLookupFlags lookup_flags
,
121 GLIB_AVAILABLE_IN_2_32
122 void g_static_resource_init (GStaticResource
*static_resource
);
123 GLIB_AVAILABLE_IN_2_32
124 void g_static_resource_fini (GStaticResource
*static_resource
);
125 GLIB_AVAILABLE_IN_2_32
126 GResource
*g_static_resource_get_resource (GStaticResource
*static_resource
);
130 #endif /* __G_RESOURCE_H__ */