--- /dev/null
+// SPDX-License-Identifier: LGPL-3.0-or-later
+#include "device-info.h"
+
+#include <sound/asound.h>
+
+G_DEFINE_TYPE(ALSATimerDeviceInfo, alsatimer_device_info, G_TYPE_OBJECT)
+
+static void alsatimer_device_info_class_init(ALSATimerDeviceInfoClass *klass)
+{
+}
+
+static void alsatimer_device_info_init(ALSATimerDeviceInfo *self)
+{
+ return;
+}
--- /dev/null
+// SPDX-License-Identifier: LGPL-3.0-or-later
+#ifndef __ALSA_GOBJECT_ALSATIMER_DEVICE_INFO__H__
+#define __ALSA_GOBJECT_ALSATIMER_DEVICE_INFO__H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define ALSATIMER_TYPE_DEVICE_INFO (alsatimer_device_info_get_type())
+
+#define ALSATIMER_DEVICE_INFO(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj), \
+ ALSATIMER_TYPE_DEVICE_INFO, \
+ ALSATimerDeviceInfo))
+#define ALSATIMER_IS_DEVICE_INFO(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
+ ALSATIMER_TYPE_DEVICE_INFO))
+
+#define ALSATIMER_DEVICE_INFO_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass), \
+ ALSATIMER_TYPE_DEVICE_INFO, \
+ ALSATimerDeviceInfoClass))
+#define ALSATIMER_IS_DEVICE_INFO_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass), \
+ ALSATIMER_TYPE_DEVICE_INFO))
+#define ALSATIMER_DEVICE_INFO_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS((obj), \
+ ALSATIMER_TYPE_DEVICE_INFO, \
+ ALSATimerDeviceInfoClass))
+
+typedef struct _ALSATimerDeviceInfo ALSATimerDeviceInfo;
+typedef struct _ALSATimerDeviceInfoClass ALSATimerDeviceInfoClass;
+
+struct _ALSATimerDeviceInfo {
+ GObject parent_instance;
+};
+
+struct _ALSATimerDeviceInfoClass {
+ GObjectClass parent_class;
+};
+
+GType alsatimer_device_info_get_type() G_GNUC_CONST;
+
+G_END_DECLS
+
+#endif
--- /dev/null
+#!/usr/bin/env python3
+
+from sys import exit
+from errno import ENXIO
+
+from helper import test
+
+import gi
+gi.require_version('ALSATimer', '0.0')
+from gi.repository import ALSATimer
+
+target = ALSATimer.DeviceInfo()
+props = ()
+methods = ()
+signals = ()
+
+if not test(target, props, methods, signals):
+ exit(ENXIO)