gresource.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright (C) 2006-2007 Red Hat, Inc.
  4. *
  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 License, or (at your option) any later version.
  9. *
  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.
  14. *
  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/>.
  17. *
  18. * Author: Alexander Larsson <alexl@redhat.com>
  19. */
  20. #ifndef __G_RESOURCE_H__
  21. #define __G_RESOURCE_H__
  22. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  23. #error "Only <gio/gio.h> can be included directly."
  24. #endif
  25. #include <gio/giotypes.h>
  26. G_BEGIN_DECLS
  27. /**
  28. * G_TYPE_RESOURCE:
  29. *
  30. * The #GType for #GResource.
  31. */
  32. #define G_TYPE_RESOURCE (g_resource_get_type ())
  33. /**
  34. * G_RESOURCE_ERROR:
  35. *
  36. * Error domain for #GResource. Errors in this domain will be from the
  37. * #GResourceError enumeration. See #GError for more information on
  38. * error domains.
  39. */
  40. #define G_RESOURCE_ERROR (g_resource_error_quark ())
  41. GLIB_AVAILABLE_IN_2_32
  42. GQuark g_resource_error_quark (void);
  43. typedef struct _GStaticResource GStaticResource;
  44. struct _GStaticResource {
  45. /*< private >*/
  46. const guint8 *data;
  47. gsize data_len;
  48. GResource *resource;
  49. GStaticResource *next;
  50. gpointer padding;
  51. };
  52. GLIB_AVAILABLE_IN_2_32
  53. GType g_resource_get_type (void) G_GNUC_CONST;
  54. GLIB_AVAILABLE_IN_2_32
  55. GResource * g_resource_new_from_data (GBytes *data,
  56. GError **error);
  57. GLIB_AVAILABLE_IN_2_32
  58. GResource * g_resource_ref (GResource *resource);
  59. GLIB_AVAILABLE_IN_2_32
  60. void g_resource_unref (GResource *resource);
  61. GLIB_AVAILABLE_IN_2_32
  62. GResource * g_resource_load (const gchar *filename,
  63. GError **error);
  64. GLIB_AVAILABLE_IN_2_32
  65. GInputStream *g_resource_open_stream (GResource *resource,
  66. const char *path,
  67. GResourceLookupFlags lookup_flags,
  68. GError **error);
  69. GLIB_AVAILABLE_IN_2_32
  70. GBytes * g_resource_lookup_data (GResource *resource,
  71. const char *path,
  72. GResourceLookupFlags lookup_flags,
  73. GError **error);
  74. GLIB_AVAILABLE_IN_2_32
  75. char ** g_resource_enumerate_children (GResource *resource,
  76. const char *path,
  77. GResourceLookupFlags lookup_flags,
  78. GError **error);
  79. GLIB_AVAILABLE_IN_2_32
  80. gboolean g_resource_get_info (GResource *resource,
  81. const char *path,
  82. GResourceLookupFlags lookup_flags,
  83. gsize *size,
  84. guint32 *flags,
  85. GError **error);
  86. GLIB_AVAILABLE_IN_2_32
  87. void g_resources_register (GResource *resource);
  88. GLIB_AVAILABLE_IN_2_32
  89. void g_resources_unregister (GResource *resource);
  90. GLIB_AVAILABLE_IN_2_32
  91. GInputStream *g_resources_open_stream (const char *path,
  92. GResourceLookupFlags lookup_flags,
  93. GError **error);
  94. GLIB_AVAILABLE_IN_2_32
  95. GBytes * g_resources_lookup_data (const char *path,
  96. GResourceLookupFlags lookup_flags,
  97. GError **error);
  98. GLIB_AVAILABLE_IN_2_32
  99. char ** g_resources_enumerate_children (const char *path,
  100. GResourceLookupFlags lookup_flags,
  101. GError **error);
  102. GLIB_AVAILABLE_IN_2_32
  103. gboolean g_resources_get_info (const char *path,
  104. GResourceLookupFlags lookup_flags,
  105. gsize *size,
  106. guint32 *flags,
  107. GError **error);
  108. GLIB_AVAILABLE_IN_2_32
  109. void g_static_resource_init (GStaticResource *static_resource);
  110. GLIB_AVAILABLE_IN_2_32
  111. void g_static_resource_fini (GStaticResource *static_resource);
  112. GLIB_AVAILABLE_IN_2_32
  113. GResource *g_static_resource_get_resource (GStaticResource *static_resource);
  114. G_END_DECLS
  115. #endif /* __G_RESOURCE_H__ */