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