summaryrefslogtreecommitdiff
path: root/src/pke-at-settings.cpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-10-10 17:07:45 -0400
committerJonathan Bradley <jcb@pikum.xyz>2025-10-10 17:07:45 -0400
commit62dae6011db94dd52c3ac0fce517c6e9cc0abcf6 (patch)
tree1700442c9b6648af7ec8781af0ec92856a93cecd /src/pke-at-settings.cpp
parentcc8653536c499df4b85aae423ad6b27bb74544be (diff)
pke-at: first-pass storage interface
Diffstat (limited to 'src/pke-at-settings.cpp')
-rw-r--r--src/pke-at-settings.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/pke-at-settings.cpp b/src/pke-at-settings.cpp
index 0f25589..c467a50 100644
--- a/src/pke-at-settings.cpp
+++ b/src/pke-at-settings.cpp
@@ -2,3 +2,14 @@
#include "pke-at-settings.hpp"
struct pke_at_global_settings g_at{};
+
+struct pke_at_section_type g_section_types[] = {
+{ PKE_AT_SECTION_TYPE_INDEX_NONE, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" },
+{ PKE_AT_SECTION_TYPE_INDEX_VERSE, "sectype-verse\0\0" },
+{ PKE_AT_SECTION_TYPE_INDEX_CHORUS, "sectype-chrus\0\0" },
+{ PKE_AT_SECTION_TYPE_INDEX_BRIDGE, "sectype-brdge\0\0" },
+{ PKE_AT_SECTION_TYPE_INDEX_INTRO, "sectype-intro\0\0" },
+{ PKE_AT_SECTION_TYPE_INDEX_OUTRO, "sectype-outro\0\0" },
+{ PKE_AT_SECTION_TYPE_INDEX_INSTRUMENTAL, "sectype-instr\0\0" },
+{ PKE_AT_SECTION_TYPE_INDEX_INTERLUDE, "sectype-intrl\0\0" },
+};