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