diff --git a/sys/rpicamsrc/gstrpicam-enums-template.c b/sys/rpicamsrc/gstrpicam-enums-template.c deleted file mode 100644 index 8631751a5a..0000000000 --- a/sys/rpicamsrc/gstrpicam-enums-template.c +++ /dev/null @@ -1,40 +0,0 @@ -/*** BEGIN file-header ***/ -#include "gstrpicam-enum-types.h" - -/*** END file-header ***/ - -/*** BEGIN file-production ***/ -/* enumerations from "@basename@" */ -#include "@filename@" - -#define C_ENUM(v) ((gint) v) -#define C_FLAGS(v) ((guint) v) - -/*** END file-production ***/ - -/*** BEGIN value-header ***/ -GType -@enum_name@_get_type (void) -{ - static volatile gsize gtype_id = 0; - - if (g_once_init_enter (>ype_id)) { - static const G@Type@Value values[] = { -/*** END value-header ***/ - -/*** BEGIN value-production ***/ - { C_@TYPE@(@VALUENAME@), "@VALUENAME@", "@valuenick@" }, -/*** END value-production ***/ - -/*** BEGIN value-tail ***/ - { 0, NULL, NULL } - }; - - GType new_type = g_@type@_register_static (g_intern_static_string ("@EnumName@"), values); - g_once_init_leave (>ype_id, new_type); - } - return (GType) gtype_id; -} - -/*** END value-tail ***/ - diff --git a/sys/rpicamsrc/gstrpicam-enums-template.h b/sys/rpicamsrc/gstrpicam-enums-template.h deleted file mode 100644 index eb25042ba5..0000000000 --- a/sys/rpicamsrc/gstrpicam-enums-template.h +++ /dev/null @@ -1,24 +0,0 @@ -/*** BEGIN file-header ***/ -#pragma once - -#include - -G_BEGIN_DECLS - -/*** END file-header ***/ - -/*** BEGIN file-production ***/ -/* Enumerations from "@basename@" */ - -/*** END file-production ***/ - -/*** BEGIN enumeration-production ***/ -#define @ENUMPREFIX@_TYPE_@ENUMSHORT@ (@enum_name@_get_type()) -GType @enum_name@_get_type (void); - -/*** END enumeration-production ***/ - -/*** BEGIN file-tail ***/ -G_END_DECLS - -/*** END file-tail ***/