summaryrefslogtreecommitdiffstats
path: root/src/modules/swap/option.h
blob: 860da9c28c4460e1f1a77863e8a0c1c5d011fd90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "common/option.h"
#include "common/percent.h"

typedef struct FFSwapOptions {
    FFModuleArgs moduleArgs;

    FFPercentageModuleConfig percent;
    bool separate;
} FFSwapOptions;

static_assert(sizeof(FFSwapOptions) <= FF_OPTION_MAX_SIZE, "FFSwapOptions size exceeds maximum allowed size");