blob: 9a8b5e82e389366aa851837feddeab5005719566 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Heinrich Schuchardt268ec6e2018-01-31 18:45:35 +00002/*
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 Schuchardt268ec6e2018-01-31 18:45:35 +00009 */
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 */