mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
15 lines
278 B
C
15 lines
278 B
C
#pragma once
|
|
|
|
#include "fastfetch.h"
|
|
|
|
typedef struct FFChassisResult
|
|
{
|
|
FFstrbuf type;
|
|
FFstrbuf serial;
|
|
FFstrbuf vendor;
|
|
FFstrbuf version;
|
|
} FFChassisResult;
|
|
|
|
const char* ffDetectChassis(FFChassisResult* result);
|
|
const char* ffChassisTypeToString(uint32_t type);
|