1 /* 2 * Portable Executable and Common Object Constants 3 * 4 * Copyright (c) 2018 Heinrich Schuchardt 5 * 6 * based on the "Microsoft Portable Executable and Common Object File Format 7 * Specification", revision 11, 2017-01-23 8 * 9 * SPDX-License-Identifier: GPL-2.0+ 10 */ 11 12 #ifndef _ASM_PE_H 13 #define _ASM_PE_H 14 15 /* Subsystem type */ 16 #define IMAGE_SUBSYSTEM_EFI_APPLICATION 10 17 #define IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER 11 18 #define IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER 12 19 #define IMAGE_SUBSYSTEM_EFI_ROM 13 20 21 #endif /* _ASM_PE_H */ 22