Tom Rini | f739fcd | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Heinrich Schuchardt | 268ec6e | 2018-01-31 18:45:35 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Portable Executable and Common Object Constants |
| 4 | * |
| 5 | * Copyright (c) 2018 Heinrich Schuchardt |
| 6 | * |
| 7 | * based on the "Microsoft Portable Executable and Common Object File Format |
| 8 | * Specification", revision 11, 2017-01-23 |
Heinrich Schuchardt | 268ec6e | 2018-01-31 18:45:35 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef _ASM_PE_H |
| 12 | #define _ASM_PE_H |
| 13 | |
| 14 | /* Subsystem type */ |
| 15 | #define IMAGE_SUBSYSTEM_EFI_APPLICATION 10 |
| 16 | #define IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER 11 |
| 17 | #define IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER 12 |
| 18 | #define IMAGE_SUBSYSTEM_EFI_ROM 13 |
| 19 | |
| 20 | #endif /* _ASM_PE_H */ |