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