From ed8e3472b2b780f4d06aab5b1c704f49f2014535 Mon Sep 17 00:00:00 2001 From: Takashi Sakamoto Date: Mon, 11 Apr 2022 17:42:26 +0900 Subject: [PATCH] all: minor code refactoring for inclusion guard Signed-off-by: Takashi Sakamoto --- src/ctl/alsactl-enum-types.h | 4 ++-- src/ctl/card-info.h | 4 ++-- src/ctl/card.h | 4 ++-- src/ctl/elem-id.h | 4 ++-- src/ctl/elem-info.h | 4 ++-- src/ctl/elem-value.h | 4 ++-- src/ctl/privates.h | 4 ++-- src/ctl/query.h | 4 ++-- src/hwdep/alsahwdep-enum-types.h | 4 ++-- src/hwdep/device-info.h | 4 ++-- src/hwdep/privates.h | 4 ++-- src/hwdep/query.h | 4 ++-- src/rawmidi/alsarawmidi-enum-types.h | 4 ++-- src/rawmidi/privates.h | 4 ++-- src/rawmidi/query.h | 4 ++-- src/rawmidi/stream-pair.h | 4 ++-- src/rawmidi/substream-info.h | 4 ++-- src/rawmidi/substream-params.h | 4 ++-- src/rawmidi/substream-status.h | 4 ++-- src/seq/addr.h | 4 ++-- src/seq/alsaseq-enum-types.h | 4 ++-- src/seq/alsaseq.h | 4 ++-- src/seq/client-info.h | 4 ++-- src/seq/client-pool.h | 4 ++-- src/seq/event-cntr.h | 4 ++-- src/seq/event-data-connect.h | 4 ++-- src/seq/event-data-ctl.h | 4 ++-- src/seq/event-data-note.h | 4 ++-- src/seq/event-data-result.h | 4 ++-- src/seq/port-info.h | 4 ++-- src/seq/privates.h | 4 ++-- src/seq/query.h | 4 ++-- src/seq/queue-info.h | 4 ++-- src/seq/queue-status.h | 4 ++-- src/seq/queue-tempo.h | 4 ++-- src/seq/queue-timer-data-alsa.h | 4 ++-- src/seq/queue-timer.h | 4 ++-- src/seq/remove-filter.h | 4 ++-- src/seq/subscribe-data.h | 4 ++-- src/seq/system-info.h | 4 ++-- src/seq/tstamp.h | 4 ++-- src/seq/user-client.h | 4 ++-- src/timer/alsatimer-enum-types.h | 5 +++-- src/timer/alsatimer.h | 1 + src/timer/device-id.h | 4 ++-- src/timer/device-info.h | 4 ++-- src/timer/device-params.h | 4 ++-- src/timer/device-status.h | 4 ++-- src/timer/event-data-tick.h | 4 ++-- src/timer/event-data-tstamp.h | 4 ++-- src/timer/event.h | 4 ++-- src/timer/instance-info.h | 4 ++-- src/timer/instance-params.h | 4 ++-- src/timer/instance-status.h | 4 ++-- src/timer/privates.h | 4 ++-- src/timer/query.h | 4 ++-- src/timer/user-instance.h | 4 ++-- 57 files changed, 114 insertions(+), 112 deletions(-) diff --git a/src/ctl/alsactl-enum-types.h b/src/ctl/alsactl-enum-types.h index 5f2c354..2626dcd 100644 --- a/src/ctl/alsactl-enum-types.h +++ b/src/ctl/alsactl-enum-types.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSACTL_ENUM_TYPES__H__ -#define __ALSA_GOBJECT_ALSACTL_ENUM_TYPES__H__ +#ifndef __ALSA_GOBJECT_ALSACTL_ENUM_TYPES_H__ +#define __ALSA_GOBJECT_ALSACTL_ENUM_TYPES_H__ /** * ALSACtlElemType: diff --git a/src/ctl/card-info.h b/src/ctl/card-info.h index dcc8012..63d9c05 100644 --- a/src/ctl/card-info.h +++ b/src/ctl/card-info.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSACTL_CARD_INFO__H__ -#define __ALSA_GOBJECT_ALSACTL_CARD_INFO__H__ +#ifndef __ALSA_GOBJECT_ALSACTL_CARD_INFO_H__ +#define __ALSA_GOBJECT_ALSACTL_CARD_INFO_H__ #include diff --git a/src/ctl/card.h b/src/ctl/card.h index 801558f..6d51a35 100644 --- a/src/ctl/card.h +++ b/src/ctl/card.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSACTL_CARD__H__ -#define __ALSA_GOBJECT_ALSACTL_CARD__H__ +#ifndef __ALSA_GOBJECT_ALSACTL_CARD_H__ +#define __ALSA_GOBJECT_ALSACTL_CARD_H__ #include diff --git a/src/ctl/elem-id.h b/src/ctl/elem-id.h index 0eff970..82d3bda 100644 --- a/src/ctl/elem-id.h +++ b/src/ctl/elem-id.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSACTL_ELEM_ID__H__ -#define __ALSA_GOBJECT_ALSACTL_ELEM_ID__H__ +#ifndef __ALSA_GOBJECT_ALSACTL_ELEM_ID_H__ +#define __ALSA_GOBJECT_ALSACTL_ELEM_ID_H__ #include diff --git a/src/ctl/elem-info.h b/src/ctl/elem-info.h index 1e67db4..b56058f 100644 --- a/src/ctl/elem-info.h +++ b/src/ctl/elem-info.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSACTL_ELEM_INFO__H__ -#define __ALSA_GOBJECT_ALSACTL_ELEM_INFO__H__ +#ifndef __ALSA_GOBJECT_ALSACTL_ELEM_INFO_H__ +#define __ALSA_GOBJECT_ALSACTL_ELEM_INFO_H__ #include diff --git a/src/ctl/elem-value.h b/src/ctl/elem-value.h index 1f812e0..31a0666 100644 --- a/src/ctl/elem-value.h +++ b/src/ctl/elem-value.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSACTL_ELEM_VALUE__H__ -#define __ALSA_GOBJECT_ALSACTL_ELEM_VALUE__H__ +#ifndef __ALSA_GOBJECT_ALSACTL_ELEM_VALUE_H__ +#define __ALSA_GOBJECT_ALSACTL_ELEM_VALUE_H__ #include diff --git a/src/ctl/privates.h b/src/ctl/privates.h index 7250bf4..522d91c 100644 --- a/src/ctl/privates.h +++ b/src/ctl/privates.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSACTL_PRIVATES__H__ -#define __ALSA_GOBJECT_ALSACTL_PRIVATES__H__ +#ifndef __ALSA_GOBJECT_ALSACTL_PRIVATES_H__ +#define __ALSA_GOBJECT_ALSACTL_PRIVATES_H__ #include "alsactl.h" diff --git a/src/ctl/query.h b/src/ctl/query.h index 0f1faf0..b48576a 100644 --- a/src/ctl/query.h +++ b/src/ctl/query.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSACTL_QUERY__H__ -#define __ALSA_GOBJECT_ALSACTL_QUERY__H__ +#ifndef __ALSA_GOBJECT_ALSACTL_QUERY_H__ +#define __ALSA_GOBJECT_ALSACTL_QUERY_H__ #include diff --git a/src/hwdep/alsahwdep-enum-types.h b/src/hwdep/alsahwdep-enum-types.h index 0c2ebbf..e761f7c 100644 --- a/src/hwdep/alsahwdep-enum-types.h +++ b/src/hwdep/alsahwdep-enum-types.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSAHWDEP_ENUM_TYPES__H__ -#define __ALSA_GOBJECT_ALSAHWDEP_ENUM_TYPES__H__ +#ifndef __ALSA_GOBJECT_ALSAHWDEP_ENUM_TYPES_H__ +#define __ALSA_GOBJECT_ALSAHWDEP_ENUM_TYPES_H__ #include diff --git a/src/hwdep/device-info.h b/src/hwdep/device-info.h index 3e6a417..1b4b47a 100644 --- a/src/hwdep/device-info.h +++ b/src/hwdep/device-info.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSAHWDEP_DEVICE_INFO__H__ -#define __ALSA_GOBJECT_ALSAHWDEP_DEVICE_INFO__H__ +#ifndef __ALSA_GOBJECT_ALSAHWDEP_DEVICE_INFO_H__ +#define __ALSA_GOBJECT_ALSAHWDEP_DEVICE_INFO_H__ #include diff --git a/src/hwdep/privates.h b/src/hwdep/privates.h index ee3f38d..eb387b8 100644 --- a/src/hwdep/privates.h +++ b/src/hwdep/privates.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSAHWDEP_PRIVATES__H__ -#define __ALSA_GOBJECT_ALSAHWDEP_PRIVATES__H__ +#ifndef __ALSA_GOBJECT_ALSAHWDEP_PRIVATES_H__ +#define __ALSA_GOBJECT_ALSAHWDEP_PRIVATES_H__ #include "alsahwdep.h" diff --git a/src/hwdep/query.h b/src/hwdep/query.h index 1137640..dc0ec8b 100644 --- a/src/hwdep/query.h +++ b/src/hwdep/query.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSAHWDEP_QUERY__H__ -#define __ALSA_GOBJECT_ALSAHWDEP_QUERY__H__ +#ifndef __ALSA_GOBJECT_ALSAHWDEP_QUERY_H__ +#define __ALSA_GOBJECT_ALSAHWDEP_QUERY_H__ #include diff --git a/src/rawmidi/alsarawmidi-enum-types.h b/src/rawmidi/alsarawmidi-enum-types.h index 6f47d2d..b2de4b8 100644 --- a/src/rawmidi/alsarawmidi-enum-types.h +++ b/src/rawmidi/alsarawmidi-enum-types.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSARAWMIDI_ENUM_TYPES__H__ -#define __ALSA_GOBJECT_ALSARAWMIDI_ENUM_TYPES__H__ +#ifndef __ALSA_GOBJECT_ALSARAWMIDI_ENUM_TYPES_H__ +#define __ALSA_GOBJECT_ALSARAWMIDI_ENUM_TYPES_H__ /** * ALSARawmidiStreamDirection: diff --git a/src/rawmidi/privates.h b/src/rawmidi/privates.h index 8a9a92b..74367c2 100644 --- a/src/rawmidi/privates.h +++ b/src/rawmidi/privates.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSARAWMIDI_PRIVATES__H__ -#define __ALSA_GOBJECT_ALSARAWMIDI_PRIVATES__H__ +#ifndef __ALSA_GOBJECT_ALSARAWMIDI_PRIVATES_H__ +#define __ALSA_GOBJECT_ALSARAWMIDI_PRIVATES_H__ #include "alsarawmidi.h" diff --git a/src/rawmidi/query.h b/src/rawmidi/query.h index c7db221..28ac915 100644 --- a/src/rawmidi/query.h +++ b/src/rawmidi/query.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSARAWMIDI_QUERY__H__ -#define __ALSA_GOBJECT_ALSARAWMIDI_QUERY__H__ +#ifndef __ALSA_GOBJECT_ALSARAWMIDI_QUERY_H__ +#define __ALSA_GOBJECT_ALSARAWMIDI_QUERY_H__ #include diff --git a/src/rawmidi/stream-pair.h b/src/rawmidi/stream-pair.h index f16174f..b0e5494 100644 --- a/src/rawmidi/stream-pair.h +++ b/src/rawmidi/stream-pair.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSARAWMIDI_STREAM_PAIR__H__ -#define __ALSA_GOBJECT_ALSARAWMIDI_STREAM_PAIR__H__ +#ifndef __ALSA_GOBJECT_ALSARAWMIDI_STREAM_PAIR_H__ +#define __ALSA_GOBJECT_ALSARAWMIDI_STREAM_PAIR_H__ #include diff --git a/src/rawmidi/substream-info.h b/src/rawmidi/substream-info.h index bc17c0b..45ea114 100644 --- a/src/rawmidi/substream-info.h +++ b/src/rawmidi/substream-info.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSARAWMIDI_SUBSTREAM_INFO__H__ -#define __ALSA_GOBJECT_ALSARAWMIDI_SUBSTREAM_INFO__H__ +#ifndef __ALSA_GOBJECT_ALSARAWMIDI_SUBSTREAM_INFO_H__ +#define __ALSA_GOBJECT_ALSARAWMIDI_SUBSTREAM_INFO_H__ #include diff --git a/src/rawmidi/substream-params.h b/src/rawmidi/substream-params.h index b139079..af73800 100644 --- a/src/rawmidi/substream-params.h +++ b/src/rawmidi/substream-params.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSARAWMIDI_SUBSTREAM_PARAMS__H__ -#define __ALSA_GOBJECT_ALSARAWMIDI_SUBSTREAM_PARAMS__H__ +#ifndef __ALSA_GOBJECT_ALSARAWMIDI_SUBSTREAM_PARAMS_H__ +#define __ALSA_GOBJECT_ALSARAWMIDI_SUBSTREAM_PARAMS_H__ #include diff --git a/src/rawmidi/substream-status.h b/src/rawmidi/substream-status.h index 73ed1b6..2cc3c13 100644 --- a/src/rawmidi/substream-status.h +++ b/src/rawmidi/substream-status.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSARAWMIDI_SUBSTREAM_STATUS__H__ -#define __ALSA_GOBJECT_ALSARAWMIDI_SUBSTREAM_STATUS__H__ +#ifndef __ALSA_GOBJECT_ALSARAWMIDI_SUBSTREAM_STATUS_H__ +#define __ALSA_GOBJECT_ALSARAWMIDI_SUBSTREAM_STATUS_H__ #include diff --git a/src/seq/addr.h b/src/seq/addr.h index e899c01..f596966 100644 --- a/src/seq/addr.h +++ b/src/seq/addr.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_ADDR__H__ -#define __ALSA_GOBJECT_ALSASEQ_ADDR__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_ADDR_H__ +#define __ALSA_GOBJECT_ALSASEQ_ADDR_H__ #include diff --git a/src/seq/alsaseq-enum-types.h b/src/seq/alsaseq-enum-types.h index b1d7c12..af9433d 100644 --- a/src/seq/alsaseq-enum-types.h +++ b/src/seq/alsaseq-enum-types.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_ENUM_TYPES__H__ -#define __ALSA_GOBJECT_ALSASEQ_ENUM_TYPES__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_ENUM_TYPES_H__ +#define __ALSA_GOBJECT_ALSASEQ_ENUM_TYPES_H__ /** * ALSASeqSpecificAddress: diff --git a/src/seq/alsaseq.h b/src/seq/alsaseq.h index a51dc59..e70a768 100644 --- a/src/seq/alsaseq.h +++ b/src/seq/alsaseq.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ__H__ -#define __ALSA_GOBJECT_ALSASEQ__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_H__ +#define __ALSA_GOBJECT_ALSASEQ_H__ #include #include diff --git a/src/seq/client-info.h b/src/seq/client-info.h index b8e7b84..7311b2c 100644 --- a/src/seq/client-info.h +++ b/src/seq/client-info.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_CLIENT_INFO__H__ -#define __ALSA_GOBJECT_ALSASEQ_CLIENT_INFO__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_CLIENT_INFO_H__ +#define __ALSA_GOBJECT_ALSASEQ_CLIENT_INFO_H__ #include diff --git a/src/seq/client-pool.h b/src/seq/client-pool.h index 1050e00..b2c2414 100644 --- a/src/seq/client-pool.h +++ b/src/seq/client-pool.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_CLIENT_POOL__H__ -#define __ALSA_GOBJECT_ALSASEQ_CLIENT_POOL__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_CLIENT_POOL_H__ +#define __ALSA_GOBJECT_ALSASEQ_CLIENT_POOL_H__ #include diff --git a/src/seq/event-cntr.h b/src/seq/event-cntr.h index cc2ec2a..c87fd30 100644 --- a/src/seq/event-cntr.h +++ b/src/seq/event-cntr.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_EVENT_CNTR__H__ -#define __ALSA_GOBJECT_ALSASEQ_EVENT_CNTR__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_EVENT_CNTR_H__ +#define __ALSA_GOBJECT_ALSASEQ_EVENT_CNTR_H__ #include diff --git a/src/seq/event-data-connect.h b/src/seq/event-data-connect.h index 04f6a73..cd62e1e 100644 --- a/src/seq/event-data-connect.h +++ b/src/seq/event-data-connect.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_CONNECT__H__ -#define __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_CONNECT__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_CONNECT_H__ +#define __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_CONNECT_H__ #include diff --git a/src/seq/event-data-ctl.h b/src/seq/event-data-ctl.h index 3936884..d7ba195 100644 --- a/src/seq/event-data-ctl.h +++ b/src/seq/event-data-ctl.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_CTL__H__ -#define __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_CTL__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_CTL_H__ +#define __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_CTL_H__ #include diff --git a/src/seq/event-data-note.h b/src/seq/event-data-note.h index 2a7cb91..44b61da 100644 --- a/src/seq/event-data-note.h +++ b/src/seq/event-data-note.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_NOTE__H__ -#define __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_NOTE__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_NOTE_H__ +#define __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_NOTE_H__ #include diff --git a/src/seq/event-data-result.h b/src/seq/event-data-result.h index 0510610..74d591a 100644 --- a/src/seq/event-data-result.h +++ b/src/seq/event-data-result.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_RESULT__H__ -#define __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_RESULT__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_RESULT_H__ +#define __ALSA_GOBJECT_ALSASEQ_EVENT_DATA_RESULT_H__ #include diff --git a/src/seq/port-info.h b/src/seq/port-info.h index dc7764f..2ea729b 100644 --- a/src/seq/port-info.h +++ b/src/seq/port-info.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_PORT_INFO__H__ -#define __ALSA_GOBJECT_ALSASEQ_PORT_INFO__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_PORT_INFO_H__ +#define __ALSA_GOBJECT_ALSASEQ_PORT_INFO_H__ #include diff --git a/src/seq/privates.h b/src/seq/privates.h index 1ae834f..37b17af 100644 --- a/src/seq/privates.h +++ b/src/seq/privates.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_PRIVATES__H__ -#define __ALSA_GOBJECT_ALSASEQ_PRIVATES__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_PRIVATES_H__ +#define __ALSA_GOBJECT_ALSASEQ_PRIVATES_H__ #include "alsaseq.h" diff --git a/src/seq/query.h b/src/seq/query.h index 4924d5e..bf83a3d 100644 --- a/src/seq/query.h +++ b/src/seq/query.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_QUERY__H__ -#define __ALSA_GOBJECT_ALSASEQ_QUERY__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_QUERY_H__ +#define __ALSA_GOBJECT_ALSASEQ_QUERY_H__ #include diff --git a/src/seq/queue-info.h b/src/seq/queue-info.h index 5f119bb..dba6053 100644 --- a/src/seq/queue-info.h +++ b/src/seq/queue-info.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_QUEUE_INFO__H__ -#define __ALSA_GOBJECT_ALSASEQ_QUEUE_INFO__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_QUEUE_INFO_H__ +#define __ALSA_GOBJECT_ALSASEQ_QUEUE_INFO_H__ #include diff --git a/src/seq/queue-status.h b/src/seq/queue-status.h index 0a7fd31..1674b72 100644 --- a/src/seq/queue-status.h +++ b/src/seq/queue-status.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_QUEUE_STATUS__H__ -#define __ALSA_GOBJECT_ALSASEQ_QUEUE_STATUS__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_QUEUE_STATUS_H__ +#define __ALSA_GOBJECT_ALSASEQ_QUEUE_STATUS_H__ #include diff --git a/src/seq/queue-tempo.h b/src/seq/queue-tempo.h index 6472200..dc63a64 100644 --- a/src/seq/queue-tempo.h +++ b/src/seq/queue-tempo.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_QUEUE_TEMPO__H__ -#define __ALSA_GOBJECT_ALSASEQ_QUEUE_TEMPO__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_QUEUE_TEMPO_H__ +#define __ALSA_GOBJECT_ALSASEQ_QUEUE_TEMPO_H__ #include diff --git a/src/seq/queue-timer-data-alsa.h b/src/seq/queue-timer-data-alsa.h index 207ee3a..6af0356 100644 --- a/src/seq/queue-timer-data-alsa.h +++ b/src/seq/queue-timer-data-alsa.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_QUEUE_TIMER_DATA_ALSA__H__ -#define __ALSA_GOBJECT_ALSASEQ_QUEUE_TIMER_DATA_ALSA__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_QUEUE_TIMER_DATA_ALSA_H__ +#define __ALSA_GOBJECT_ALSASEQ_QUEUE_TIMER_DATA_ALSA_H__ #include #include diff --git a/src/seq/queue-timer.h b/src/seq/queue-timer.h index 99c3eda..67b8800 100644 --- a/src/seq/queue-timer.h +++ b/src/seq/queue-timer.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_QUEUE_TIMER__H__ -#define __ALSA_GOBJECT_ALSASEQ_QUEUE_TIMER__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_QUEUE_TIMER_H__ +#define __ALSA_GOBJECT_ALSASEQ_QUEUE_TIMER_H__ #include diff --git a/src/seq/remove-filter.h b/src/seq/remove-filter.h index b9461d3..2d929b5 100644 --- a/src/seq/remove-filter.h +++ b/src/seq/remove-filter.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_REMOVE_FILTER__H__ -#define __ALSA_GOBJECT_ALSASEQ_REMOVE_FILTER__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_REMOVE_FILTER_H__ +#define __ALSA_GOBJECT_ALSASEQ_REMOVE_FILTER_H__ #include diff --git a/src/seq/subscribe-data.h b/src/seq/subscribe-data.h index a0065c8..4543b22 100644 --- a/src/seq/subscribe-data.h +++ b/src/seq/subscribe-data.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_SUBSCRIBE_DATA__H__ -#define __ALSA_GOBJECT_ALSASEQ_SUBSCRIBE_DATA__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_SUBSCRIBE_DATA_H__ +#define __ALSA_GOBJECT_ALSASEQ_SUBSCRIBE_DATA_H__ #include diff --git a/src/seq/system-info.h b/src/seq/system-info.h index 4219f53..ce0907b 100644 --- a/src/seq/system-info.h +++ b/src/seq/system-info.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_SYSTEM_INFO__H__ -#define __ALSA_GOBJECT_ALSASEQ_SYSTEM_INFO__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_SYSTEM_INFO_H__ +#define __ALSA_GOBJECT_ALSASEQ_SYSTEM_INFO_H__ #include diff --git a/src/seq/tstamp.h b/src/seq/tstamp.h index c8e4eb8..bb00392 100644 --- a/src/seq/tstamp.h +++ b/src/seq/tstamp.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_TSTAMP__H__ -#define __ALSA_GOBJECT_ALSASEQ_TSTAMP__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_TSTAMP_H__ +#define __ALSA_GOBJECT_ALSASEQ_TSTAMP_H__ #include diff --git a/src/seq/user-client.h b/src/seq/user-client.h index 33cefff..505a62c 100644 --- a/src/seq/user-client.h +++ b/src/seq/user-client.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSASEQ_USER_CLIENT__H__ -#define __ALSA_GOBJECT_ALSASEQ_USER_CLIENT__H__ +#ifndef __ALSA_GOBJECT_ALSASEQ_USER_CLIENT_H__ +#define __ALSA_GOBJECT_ALSASEQ_USER_CLIENT_H__ #include diff --git a/src/timer/alsatimer-enum-types.h b/src/timer/alsatimer-enum-types.h index b527c97..995afb0 100644 --- a/src/timer/alsatimer-enum-types.h +++ b/src/timer/alsatimer-enum-types.h @@ -1,5 +1,6 @@ -#ifndef __ALSA_GOBJECT_ALSATIMER_ENUM_TYPES__H__ -#define __ALSA_GOBJECT_ALSATIMER_ENUM_TYPES__H__ +// SPDX-License-Identifier: LGPL-3.0-or-later +#ifndef __ALSA_GOBJECT_ALSATIMER_ENUM_TYPES_H__ +#define __ALSA_GOBJECT_ALSATIMER_ENUM_TYPES_H__ /** * ALSATimerClass: diff --git a/src/timer/alsatimer.h b/src/timer/alsatimer.h index 740979e..33e3206 100644 --- a/src/timer/alsatimer.h +++ b/src/timer/alsatimer.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: LGPL-3.0-or-later #ifndef __ALSA_GOBJECT_ALSATIMER_H__ #define __ALSA_GOBJECT_ALSATIMER_H__ diff --git a/src/timer/device-id.h b/src/timer/device-id.h index e4e1164..8149ac5 100644 --- a/src/timer/device-id.h +++ b/src/timer/device-id.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_DEVICE_ID__H__ -#define __ALSA_GOBJECT_ALSATIMER_DEVICE_ID__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_DEVICE_ID_H__ +#define __ALSA_GOBJECT_ALSATIMER_DEVICE_ID_H__ #include diff --git a/src/timer/device-info.h b/src/timer/device-info.h index 3e100bc..9177e09 100644 --- a/src/timer/device-info.h +++ b/src/timer/device-info.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_DEVICE_INFO__H__ -#define __ALSA_GOBJECT_ALSATIMER_DEVICE_INFO__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_DEVICE_INFO_H__ +#define __ALSA_GOBJECT_ALSATIMER_DEVICE_INFO_H__ #include diff --git a/src/timer/device-params.h b/src/timer/device-params.h index ebc5c17..aebf186 100644 --- a/src/timer/device-params.h +++ b/src/timer/device-params.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_DEVICE_PARAMS__H__ -#define __ALSA_GOBJECT_ALSATIMER_DEVICE_PARAMS__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_DEVICE_PARAMS_H__ +#define __ALSA_GOBJECT_ALSATIMER_DEVICE_PARAMS_H__ #include diff --git a/src/timer/device-status.h b/src/timer/device-status.h index 44c7b25..96a97aa 100644 --- a/src/timer/device-status.h +++ b/src/timer/device-status.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_DEVICE_STATUS__H__ -#define __ALSA_GOBJECT_ALSATIMER_DEVICE_STATUS__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_DEVICE_STATUS_H__ +#define __ALSA_GOBJECT_ALSATIMER_DEVICE_STATUS_H__ #include diff --git a/src/timer/event-data-tick.h b/src/timer/event-data-tick.h index 3e67b4d..52d7b22 100644 --- a/src/timer/event-data-tick.h +++ b/src/timer/event-data-tick.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_EVENT_DATA_TICK__H__ -#define __ALSA_GOBJECT_ALSATIMER_EVENT_DATA_TICK__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_EVENT_DATA_TICK_H__ +#define __ALSA_GOBJECT_ALSATIMER_EVENT_DATA_TICK_H__ #include diff --git a/src/timer/event-data-tstamp.h b/src/timer/event-data-tstamp.h index 2c1c6da..fbd1ef9 100644 --- a/src/timer/event-data-tstamp.h +++ b/src/timer/event-data-tstamp.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_EVENT_DATA_TSTAMP__H__ -#define __ALSA_GOBJECT_ALSATIMER_EVENT_DATA_TSTAMP__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_EVENT_DATA_TSTAMP_H__ +#define __ALSA_GOBJECT_ALSATIMER_EVENT_DATA_TSTAMP_H__ #include diff --git a/src/timer/event.h b/src/timer/event.h index 13546d6..efa9663 100644 --- a/src/timer/event.h +++ b/src/timer/event.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_EVENT__H__ -#define __ALSA_GOBJECT_ALSATIMER_EVENT__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_EVENT_H__ +#define __ALSA_GOBJECT_ALSATIMER_EVENT_H__ #include diff --git a/src/timer/instance-info.h b/src/timer/instance-info.h index 3907481..fac227f 100644 --- a/src/timer/instance-info.h +++ b/src/timer/instance-info.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_INSTANCE_INFO__H__ -#define __ALSA_GOBJECT_ALSATIMER_INSTANCE_INFO__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_INSTANCE_INFO_H__ +#define __ALSA_GOBJECT_ALSATIMER_INSTANCE_INFO_H__ #include diff --git a/src/timer/instance-params.h b/src/timer/instance-params.h index 6c4ff4a..942364f 100644 --- a/src/timer/instance-params.h +++ b/src/timer/instance-params.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_INSTANCE_PARAMS__H__ -#define __ALSA_GOBJECT_ALSATIMER_INSTANCE_PARAMS__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_INSTANCE_PARAMS_H__ +#define __ALSA_GOBJECT_ALSATIMER_INSTANCE_PARAMS_H__ #include diff --git a/src/timer/instance-status.h b/src/timer/instance-status.h index 69d9254..b839976 100644 --- a/src/timer/instance-status.h +++ b/src/timer/instance-status.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_INSTANCE_STATUS__H__ -#define __ALSA_GOBJECT_ALSATIMER_INSTANCE_STATUS__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_INSTANCE_STATUS_H__ +#define __ALSA_GOBJECT_ALSATIMER_INSTANCE_STATUS_H__ #include diff --git a/src/timer/privates.h b/src/timer/privates.h index f8b2248..88558bc 100644 --- a/src/timer/privates.h +++ b/src/timer/privates.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_PRIVATES__H__ -#define __ALSA_GOBJECT_ALSATIMER_PRIVATES__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_PRIVATES_H__ +#define __ALSA_GOBJECT_ALSATIMER_PRIVATES_H__ #include "alsatimer.h" diff --git a/src/timer/query.h b/src/timer/query.h index 6aa1758..d92fea6 100644 --- a/src/timer/query.h +++ b/src/timer/query.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_QUERY__H__ -#define __ALSA_GOBJECT_ALSATIMER_QUERY__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_QUERY_H__ +#define __ALSA_GOBJECT_ALSATIMER_QUERY_H__ #include diff --git a/src/timer/user-instance.h b/src/timer/user-instance.h index 8b04f41..a2694d3 100644 --- a/src/timer/user-instance.h +++ b/src/timer/user-instance.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: LGPL-3.0-or-later -#ifndef __ALSA_GOBJECT_ALSATIMER_USER_INSTANCE__H__ -#define __ALSA_GOBJECT_ALSATIMER_USER_INSTANCE__H__ +#ifndef __ALSA_GOBJECT_ALSATIMER_USER_INSTANCE_H__ +#define __ALSA_GOBJECT_ALSATIMER_USER_INSTANCE_H__ #include -- 2.47.3