mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-06-15 20:05:12 +00:00
17 lines
353 B
C
17 lines
353 B
C
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
#ifndef SHIM_ERRORS_H
|
|
#define SHIM_ERRORS_H
|
|
|
|
#ifndef EFI_INCOMPATIBLE_VERSION
|
|
#define EFI_INCOMPATIBLE_VERSION EFIERR(25)
|
|
#endif
|
|
#ifndef EFI_SECURITY_VIOLATION
|
|
#define EFI_SECURITY_VIOLATION EFIERR(26)
|
|
#endif
|
|
#ifndef EFI_HTTP_ERROR
|
|
#define EFI_HTTP_ERROR EFIERR(35)
|
|
#endif
|
|
|
|
#endif /* SHIM_ERRORS_H */
|