[gupnp-dlna/wip/new-api: 10/46] Make GUPnPDLNARestriction a boxed type.
- From: Krzesimir Nowak <krnowak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gupnp-dlna/wip/new-api: 10/46] Make GUPnPDLNARestriction a boxed type.
- Date: Mon, 14 Jan 2013 10:05:25 +0000 (UTC)
commit 1fe5a909c13ca0f7dc85acb0e340930da6367cc1
Author: Krzesimir Nowak <krnowak openismus com>
Date: Wed Nov 28 12:02:58 2012 +0100
Make GUPnPDLNARestriction a boxed type.
libgupnp-dlna/gupnp-dlna-restriction.c | 5 +++++
libgupnp-dlna/gupnp-dlna-restriction.h | 11 +++++++++++
2 files changed, 16 insertions(+), 0 deletions(-)
---
diff --git a/libgupnp-dlna/gupnp-dlna-restriction.c b/libgupnp-dlna/gupnp-dlna-restriction.c
index 5b8531c..7742562 100644
--- a/libgupnp-dlna/gupnp-dlna-restriction.c
+++ b/libgupnp-dlna/gupnp-dlna-restriction.c
@@ -30,6 +30,11 @@ struct _GUPnPDLNARestriction {
GHashTable *entries; /* <gchar *, GUPnPDLNANativeValueList *> */
};
+G_DEFINE_BOXED_TYPE (GUPnPDLNARestriction,
+ gupnp_dlna_restriction,
+ gupnp_dlna_restriction_copy,
+ gupnp_dlna_restriction_free)
+
GUPnPDLNARestriction *
gupnp_dlna_restriction_new (const gchar *mime)
{
diff --git a/libgupnp-dlna/gupnp-dlna-restriction.h b/libgupnp-dlna/gupnp-dlna-restriction.h
index 3660f46..1fccb08 100644
--- a/libgupnp-dlna/gupnp-dlna-restriction.h
+++ b/libgupnp-dlna/gupnp-dlna-restriction.h
@@ -23,6 +23,7 @@
#define __GUPNP_DLNA_RESTRICTION_H__
#include <glib.h>
+#include <glib-object.h>
G_BEGIN_DECLS
@@ -31,6 +32,16 @@ typedef struct _GUPnPDLNARestriction GUPnPDLNARestriction;
#define GUPNP_DLNA_RESTRICTION(x) \
((GUPnPDLNARestriction *) x)
+/**
+ * GUPNP_TYPE_DLNA_RESTRICTION:
+ *
+ * The #GType for #GUPnPDLNARestriction.
+ */
+#define GUPNP_TYPE_DLNA_RESTRICTION (gupnp_dlna_restriction_get_type ())
+
+GType
+gupnp_dlna_restriction_get_type (void) G_GNUC_CONST;
+
GUPnPDLNARestriction *
gupnp_dlna_restriction_copy (GUPnPDLNARestriction *restriction);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]