summaryrefslogtreecommitdiffstats
path: root/src/modules/bluetooth/option.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/bluetooth/option.h')
-rw-r--r--src/modules/bluetooth/option.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/modules/bluetooth/option.h b/src/modules/bluetooth/option.h
new file mode 100644
index 0000000..1f11d29
--- /dev/null
+++ b/src/modules/bluetooth/option.h
@@ -0,0 +1,13 @@
+#pragma once
+
+#include "common/option.h"
+#include "common/percent.h"
+
+typedef struct FFBluetoothOptions {
+ FFModuleArgs moduleArgs;
+
+ bool showDisconnected;
+ FFPercentageModuleConfig percent;
+} FFBluetoothOptions;
+
+static_assert(sizeof(FFBluetoothOptions) <= FF_OPTION_MAX_SIZE, "FFBluetoothOptions size exceeds maximum allowed size");