/* * Process Hacker * * Descriptions from the PE/COFF specification v8 from Microsoft. */ using System; using System.Collections.Generic; using System.Text; namespace ProcessHacker.PE { /// /// Specifies the Windows subsystem requied to run an image. /// public enum ImageSubsystem : ushort { /// /// An unknown subsystem. /// Unknown = 0, /// /// Device drivers and native Windows processes. /// Native = 1, /// /// The Windows graphical user interface (GUI) subsystem. /// WindowsGUI = 2, /// /// The Windows character subsystem. /// WindowsCUI = 3, /// /// The POSIX character subsystem. /// POSIXCUI = 7, /// /// Windows CE. /// WindowsCEGUI = 9, /// /// An Extensible Firmware Interface (EFI) application. /// EFIApplication = 10, /// /// An EFI driver with boot services. /// EFIBootServiceDriver = 11, /// /// An EFI driver with run-time services. /// EFIRuntimeDriver = 12, /// /// An EFI ROM image. /// EFIROM = 13, /// /// XBOX. /// XBOX = 14 } }