Files
fastfetch/src/detection/bootmgr/bootmgr.h
T
2025-03-23 21:30:53 +08:00

14 lines
226 B
C

#pragma once
#include "fastfetch.h"
typedef struct FFBootmgrResult
{
FFstrbuf name;
FFstrbuf firmware;
uint16_t order;
bool secureBoot;
} FFBootmgrResult;
const char* ffDetectBootmgr(FFBootmgrResult* bios);