summaryrefslogtreecommitdiffstats
path: root/src/modules/mouse/option.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/mouse/option.h')
-rw-r--r--src/modules/mouse/option.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/modules/mouse/option.h b/src/modules/mouse/option.h
new file mode 100644
index 0000000..ec2c26e
--- /dev/null
+++ b/src/modules/mouse/option.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include "common/option.h"
+#include "common/FFlist.h"
+
+typedef struct FFMouseOptions {
+ FFModuleArgs moduleArgs;
+
+ FFlist ignores; // List of FFstrbuf
+} FFMouseOptions;
+
+static_assert(sizeof(FFMouseOptions) <= FF_OPTION_MAX_SIZE, "FFMouseOptions size exceeds maximum allowed size");