mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
23 lines
381 B
C
23 lines
381 B
C
#pragma once
|
|
|
|
#ifndef FF_INCLUDED_detection_temps
|
|
#define FF_INCLUDED_detection_temps
|
|
|
|
#include "fastfetch.h"
|
|
|
|
typedef struct FFTempValue
|
|
{
|
|
FFstrbuf name;
|
|
FFstrbuf deviceClass;
|
|
double value;
|
|
} FFTempValue;
|
|
|
|
typedef struct FFTempsResult
|
|
{
|
|
FFlist values; //List of FFTempValue
|
|
} FFTempsResult;
|
|
|
|
const FFTempsResult* ffDetectTemps(const FFinstance* instance);
|
|
|
|
#endif
|