<xi:include href="xml/instance-params.xml"/>
<xi:include href="xml/event-data.xml"/>
<xi:include href="xml/event-data-tick.xml"/>
- <xi:include href="xml/event-data-timestamp.xml"/>
+ <xi:include href="xml/event-data-tstamp.xml"/>
</chapter>
<index id="index-all">
alsatimer_instance_status_get_type
alsatimer_event_data_get_type
alsatimer_event_data_tick_get_type
-alsatimer_event_data_timestamp_get_type
+alsatimer_event_data_tstamp_get_type
"alsatimer_event_data_tick_get_resolution";
"alsatimer_event_data_tick_get_ticks";
- "alsatimer_event_data_timestamp_get_type";
+ "alsatimer_event_data_tstamp_get_type";
"alsatimer_event_get_type";
local:
+++ /dev/null
-// SPDX-License-Identifier: LGPL-3.0-or-later
-#include "event-data-timestamp.h"
-#include "privates.h"
-
-/**
- * SECTION: event-data-timestamp
- * @Title: ALSATimerEventDataTimestamp
- * @Short_description: A boxed object to represent event of timer with
- * timestamp
- *
- * A #ALSATimerEventDataTimestamp is a boxed object to represent event of timer
- * with timestamp.
- *
- * The object wraps 'struct snd_timer_tread' in UAPI of Linux sound subsystem.
- */
-ALSATimerEventDataTimestamp *timer_event_data_timestamp_copy(const ALSATimerEventDataTimestamp *self)
-{
- return g_memdup(self, sizeof(*self));
-}
-
-G_DEFINE_BOXED_TYPE(ALSATimerEventDataTimestamp, alsatimer_event_data_timestamp, timer_event_data_timestamp_copy, g_free)
+++ /dev/null
-// SPDX-License-Identifier: LGPL-3.0-or-later
-#ifndef __ALSA_GOBJECT_ALSATIMER_EVENT_DATA_TIMESTAMP__H__
-#define __ALSA_GOBJECT_ALSATIMER_EVENT_DATA_TIMESTAMP__H__
-
-#include <glib.h>
-#include <glib-object.h>
-
-#include <sound/asound.h>
-
-G_BEGIN_DECLS
-
-#define ALSATIMER_TYPE_EVENT_DATA_TIMESTAMP (alsatimer_event_data_timestamp_get_type())
-
-typedef struct snd_timer_tread ALSATimerEventDataTimestamp;
-
-GType alsatimer_event_data_timestamp_get_type() G_GNUC_CONST;
-
-G_END_DECLS
-
-#endif
--- /dev/null
+// SPDX-License-Identifier: LGPL-3.0-or-later
+#include "event-data-tstamp.h"
+#include "privates.h"
+
+/**
+ * SECTION: event-data-tstamp
+ * @Title: ALSATimerEventDataTstamp
+ * @Short_description: A boxed object to represent event of timer with
+ * tstamp
+ *
+ * A #ALSATimerEventDataTstamp is a boxed object to represent event of timer
+ * with tstamp.
+ *
+ * The object wraps 'struct snd_timer_tread' in UAPI of Linux sound subsystem.
+ */
+ALSATimerEventDataTstamp *timer_event_data_tstamp_copy(const ALSATimerEventDataTstamp *self)
+{
+ return g_memdup(self, sizeof(*self));
+}
+
+G_DEFINE_BOXED_TYPE(ALSATimerEventDataTstamp, alsatimer_event_data_tstamp, timer_event_data_tstamp_copy, g_free)
--- /dev/null
+// SPDX-License-Identifier: LGPL-3.0-or-later
+#ifndef __ALSA_GOBJECT_ALSATIMER_EVENT_DATA_TSTAMP__H__
+#define __ALSA_GOBJECT_ALSATIMER_EVENT_DATA_TSTAMP__H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+#include <sound/asound.h>
+
+G_BEGIN_DECLS
+
+#define ALSATIMER_TYPE_EVENT_DATA_TSTAMP (alsatimer_event_data_tstamp_get_type())
+
+typedef struct snd_timer_tread ALSATimerEventDataTstamp;
+
+GType alsatimer_event_data_tstamp_get_type() G_GNUC_CONST;
+
+G_END_DECLS
+
+#endif
#include <glib-object.h>
#include <timer/event-data-tick.h>
-#include <timer/event-data-timestamp.h>
+#include <timer/event-data-tstamp.h>
G_BEGIN_DECLS
typedef union {
ALSATimerEventDataTick tick;
- ALSATimerEventDataTimestamp timestamp;
+ ALSATimerEventDataTstamp tstamp;
} ALSATimerEvent;
GType alsatimer_event_get_type() G_GNUC_CONST;
'instance-status.c',
'event-data.c',
'event-data-tick.c',
- 'event-data-timestamp.c',
+ 'event-data-tstamp.c',
'event.c',
)
'instance-status.h',
'event-data.h',
'event-data-tick.h',
- 'event-data-timestamp.h',
+ 'event-data-tstamp.h',
'event.h',
)