// // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // /* * Copyright (c) 2002 Sergey Chaban */ namespace Mono.PEToolkit { /// /// public enum Subsystem : short { /// /// Unknown subsystem. /// /// /// IMAGE_SUBSYSTEM_UNKNOWN /// UNKNOWN = 0, /// /// Image doesn't require a subsystem. /// /// /// IMAGE_SUBSYSTEM_NATIVE /// NATIVE = 1, /// /// Image runs in the Windows GUI subsystem. /// /// /// IMAGE_SUBSYSTEM_WINDOWS_GUI /// WINDOWS_GUI = 2, /// /// Image runs in the Windows character subsystem. /// /// /// IMAGE_SUBSYSTEM_WINDOWS_CUI /// WINDOWS_CUI = 3, /// /// Image runs in the OS/2 character subsystem. /// /// /// IMAGE_SUBSYSTEM_OS2_CUI /// OS2_CUI = 5, /// /// Image runs in the Posix character subsystem. /// /// /// IMAGE_SUBSYSTEM_POSIX_CUI /// POSIX_CUI = 7, /// /// Image is a native Win9x driver. /// /// /// IMAGE_SUBSYSTEM_NATIVE_WINDOWS /// NATIVE_WINDOWS = 8, /// /// Image runs in the Windows CE subsystem. /// /// /// IMAGE_SUBSYSTEM_WINDOWS_CE_GUI /// WINDOWS_CE_GUI = 9, /// /// /// /// IMAGE_SUBSYSTEM_EFI_APPLICATION /// EFI_APPLICATION = 10, /// /// /// /// IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER /// EFI_BOOT_SERVICE_DRIVER = 11, /// /// /// /// IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER /// EFI_RUNTIME_DRIVER = 12, /// /// /// /// IMAGE_SUBSYSTEM_EFI_ROM /// EFI_ROM = 13, /// /// /// /// IMAGE_SUBSYSTEM_XBOX /// XBOX = 14, } }