aboutsummaryrefslogtreecommitdiff
path: root/src/c/config.h
diff options
context:
space:
mode:
authorReiner Herrmann <reiner@reiner-h.de>2026-06-10 20:55:46 +0200
committerReiner Herrmann <reiner@reiner-h.de>2026-06-10 20:57:40 +0200
commit4d03f4370b3052949acfe7cc589d82adc427b8fb (patch)
tree9df3898b10830472fff79da98c8717771ded41f1 /src/c/config.h
parent338df4088001869f83de45cf628b4ec43824a499 (diff)
make shown extensions configurable via phone app
Diffstat (limited to 'src/c/config.h')
-rw-r--r--src/c/config.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/c/config.h b/src/c/config.h
new file mode 100644
index 0000000..fcd21fb
--- /dev/null
+++ b/src/c/config.h
@@ -0,0 +1,15 @@
+/*
+ * Copyright (C) 2026 Reiner Herrmann
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ */
+
+#ifndef CONFIG_H
+#define CONFIG_H
+
+#include <pebble.h>
+
+void config_init();
+void config_deinit();
+uint32_t config_get_enabled_extensions();
+
+#endif