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