mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 10:52:08 +02:00
cb48c1277a
It's only supported on Linux
19 lines
342 B
C
19 lines
342 B
C
#pragma once
|
|
|
|
#ifndef FF_INCLUDED_detection_chassis_chassis
|
|
#define FF_INCLUDED_detection_chassis_chassis
|
|
|
|
#include "fastfetch.h"
|
|
|
|
typedef struct FFChassisResult
|
|
{
|
|
FFstrbuf chassisType;
|
|
FFstrbuf chassisVendor;
|
|
FFstrbuf chassisVersion;
|
|
FFstrbuf error;
|
|
} FFChassisResult;
|
|
|
|
void ffDetectChassis(FFChassisResult* result);
|
|
|
|
#endif
|