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