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