Files
systemd/src/boot/sysfail.h
Daan De Meyer c60a8c72d1 boot: Clean up includes
Instead of introducing efi-forward.h, we use efi.h for the same purpose
in the boot/ folder.
2025-05-22 11:10:20 +02:00

14 lines
302 B
C

/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once
#include "efi.h"
typedef enum SysFailType {
SYSFAIL_NO_FAILURE,
SYSFAIL_FIRMWARE_UPDATE,
_SYSFAIL_MAX,
} SysFailType;
SysFailType sysfail_check(void);
const char16_t* sysfail_get_error_str(SysFailType fail_type);