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