summaryrefslogtreecommitdiffstats
path: root/src/modules/bluetooth/option.h
blob: 1f11d295ca4bb66c93e505888e8bf4b87249dbc8 (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 FFBluetoothOptions {
    FFModuleArgs moduleArgs;

    bool showDisconnected;
    FFPercentageModuleConfig percent;
} FFBluetoothOptions;

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