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

#include "common/option.h"

typedef struct FFCPUOptions {
    FFModuleArgs moduleArgs;

    FFstrbuf tempSensor;
    bool temp;
    FFColorRangeConfig tempConfig;
    bool showPeCoreCount;
} FFCPUOptions;

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