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