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