Files
mirror-processhacker/trunk/ProcessHacker/PE/ImageSubsystem.cs
T
wj32 1d72ebb6b6 * Fixed: broken Ctrl+A for memory, results, and PE lists
* POSIX process support, including command lines and highlighting
* Automatic tree text coloring, allowing for dark highlighting colors

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1434 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-06-19 09:56:44 +00:00

88 lines
2.3 KiB
C#

/*
* Process Hacker -
* image subsystem
*
* Copyright (C) 2008 wj32
* Descriptions from the PE/COFF specification from Microsoft.
*
* This file is part of Process Hacker.
*
* Process Hacker is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Process Hacker is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Process Hacker. If not, see <http://www.gnu.org/licenses/>.
*/
namespace ProcessHacker.PE
{
/// <summary>
/// Specifies the Windows subsystem requied to run an image.
/// </summary>
public enum ImageSubsystem : ushort
{
/// <summary>
/// An unknown subsystem.
/// </summary>
Unknown = 0,
/// <summary>
/// Device drivers and native Windows processes.
/// </summary>
Native = 1,
/// <summary>
/// The Windows graphical user interface (GUI) subsystem.
/// </summary>
WindowsGUI = 2,
/// <summary>
/// The Windows character subsystem.
/// </summary>
WindowsCUI = 3,
/// <summary>
/// The POSIX character subsystem.
/// </summary>
POSIXCUI = 7,
/// <summary>
/// Windows CE.
/// </summary>
WindowsCEGUI = 9,
/// <summary>
/// An Extensible Firmware Interface (EFI) application.
/// </summary>
EFIApplication = 10,
/// <summary>
/// An EFI driver with boot services.
/// </summary>
EFIBootServiceDriver = 11,
/// <summary>
/// An EFI driver with run-time services.
/// </summary>
EFIRuntimeDriver = 12,
/// <summary>
/// An EFI ROM image.
/// </summary>
EFIROM = 13,
/// <summary>
/// XBOX.
/// </summary>
XBOX = 14
}
}