blob: 918ae9bef8c58cc3e2416519d1c042d606689192 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include "common/option.h"
typedef struct FFLMOptions {
FFModuleArgs moduleArgs;
} FFLMOptions;
static_assert(sizeof(FFLMOptions) <= FF_OPTION_MAX_SIZE, "FFLMOptions size exceeds maximum allowed size");
|