blob: 1c6cf528025ba9ec5d06f00210d92d37e70e3cff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// SPDX-License-Identifier: BSD-2-Clause-Patent
#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 */
|