mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
14 lines
226 B
C
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);
|