summaryrefslogtreecommitdiff
path: root/src/analysis/routine.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-04-05 18:09:02 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-04-05 18:09:02 (GMT)
commitb15f45921eea3dda27a4f03c9928fbd9c6418a54 (patch)
tree2f2e1839c045abaf24491f0cdbf1e7762447053c /src/analysis/routine.h
parent50dcb7b1f40bb9e66d4872a7eebd364c6ea11125 (diff)
Fixed and updated GType macros dealing with non-existent interfaces.
Diffstat (limited to 'src/analysis/routine.h')
-rw-r--r--src/analysis/routine.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/analysis/routine.h b/src/analysis/routine.h
index 52b2747..7a836cf 100644
--- a/src/analysis/routine.h
+++ b/src/analysis/routine.h
@@ -47,10 +47,12 @@ typedef enum _RoutineType
} RoutineType;
-#define G_TYPE_BIN_ROUTINE g_bin_routine_get_type()
-#define G_BIN_ROUTINE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), g_bin_routine_get_type(), GBinRoutine))
-#define G_IS_BIN_ROUTINE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), g_bin_routine_get_type()))
-#define G_BIN_ROUTINE_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE((inst), g_bin_routine_get_type(), GBinRoutineIface))
+#define G_TYPE_BIN_ROUTINE g_bin_routine_get_type()
+#define G_BIN_ROUTINE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), G_TYPE_BIN_ROUTINE, GBinRoutine))
+#define G_IS_BIN_ROUTINE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), G_TYPE_BIN_ROUTINE))
+#define G_BIN_ROUTINE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), G_TYPE_BIN_ROUTINE, GBinRoutineClass))
+#define G_IS_BIN_ROUTINE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), G_TYPE_BIN_ROUTINE))
+#define G_BIN_ROUTINE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_BIN_ROUTINE, GBinRoutineClass))
/* Représentation générique de routine (instance) */