From 9c799843eda0519d98f4ad6668920c377dfebc1c Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Mon, 10 Jun 2024 18:47:34 +0900 Subject: [PATCH] Add include guard to jingle header --- src/interval_notification.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/interval_notification.h b/src/interval_notification.h index 59997bb..998d3e9 100644 --- a/src/interval_notification.h +++ b/src/interval_notification.h @@ -1,3 +1,6 @@ +#ifndef SEODISPARATE_COM_BREAK_INTERVAL_INTERVAL_NOTIFICATION_JINGLE_H +#define SEODISPARATE_COM_BREAK_INTERVAL_INTERVAL_NOTIFICATION_JINGLE_H + unsigned char interval_notification_mp3[] = { 0x49, 0x44, 0x33, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x54, 0x53, 0x53, 0x45, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x03, 0x4c, 0x61, 0x76, @@ -11499,3 +11502,5 @@ unsigned char interval_notification_mp3[] = { 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa }; unsigned int interval_notification_mp3_len = 137970; + +#endif