From 235e1a5df9d8344633be57b9fea365f4952a3d04 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Wed, 29 Oct 2003 05:12:18 +0000 Subject: Change Class to Iface. Fix casting macros. Original commit message from CVS: Change Class to Iface. Fix casting macros. --- gst-libs/gst/navigation/navigation.h | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'gst-libs/gst/navigation/navigation.h') diff --git a/gst-libs/gst/navigation/navigation.h b/gst-libs/gst/navigation/navigation.h index 6efe8a7e..32eeaa32 100644 --- a/gst-libs/gst/navigation/navigation.h +++ b/gst-libs/gst/navigation/navigation.h @@ -30,26 +30,22 @@ G_BEGIN_DECLS #define GST_TYPE_NAVIGATION \ (gst_navigation_get_type ()) #define GST_NAVIGATION(obj) \ - (G_INTERFACE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_NAVIGATION, GstNavigation)) -#define GST_NAVIGATION_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_NAVIGATION, GstNavigationClass)) + (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_NAVIGATION, GstNavigation)) #define GST_IS_NAVIGATION(obj) \ - (G_INTERFACE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_NAVIGATION)) -#define GST_IS_NAVIGATION_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_NAVIGATION)) -#define GST_NAVIGATION_GET_CLASS(inst) \ - (G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_NAVIGATION, GstNavigationClass)) + (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_NAVIGATION)) +#define GST_NAVIGATION_GET_IFACE(obj) \ + (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GST_TYPE_NAVIGATION, GstNavigationIface)) typedef struct _GstNavigation GstNavigation; -typedef struct _GstNavigationClass { - GTypeInterface klass; +typedef struct _GstNavigationIface { + GTypeInterface g_iface; /* virtual functions */ void (*send_event) (GstNavigation *navigation, GstCaps *caps); GST_CLASS_PADDING -} GstNavigationClass; +} GstNavigationIface; GType gst_navigation_get_type (void); -- cgit v1.2.1