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