mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-06-05 22:16:41 +00:00

... and make them all the same formatting too. Signed-off-by: Peter Jones <pjones@redhat.com>
14 lines
259 B
C
14 lines
259 B
C
#ifndef SHIM_ERRORS_H
|
|
#define SHIM_ERRORS_H
|
|
|
|
#include <efierr.h>
|
|
|
|
#ifndef EFI_INCOMPATIBLE_VERSION
|
|
#define EFI_INCOMPATIBLE_VERSION EFIERR(25)
|
|
#endif
|
|
#ifndef EFI_SECURITY_VIOLATION
|
|
#define EFI_SECURITY_VIOLATION EFIERR(26)
|
|
#endif
|
|
|
|
#endif /* SHIM_ERRORS_H */
|