Files
osrepodbmgr/osrepodbmgr.Core/PlatformID.cs

189 lines
5.2 KiB
C#
Raw Normal View History

2017-04-20 06:56:49 +01:00
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : PlatformID.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Interop services.
//
// --[ Description ] ----------------------------------------------------------
//
// Contains an enhanced PlatformID enumeration.
//
// --[ License ] --------------------------------------------------------------
//
// 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 © 2011-2016 Natalia Portillo
// ****************************************************************************/
namespace DiscImageChef.Interop
{
public enum PlatformID
{
/// <summary>
2017-12-30 00:32:21 +00:00
/// Win32s
2017-04-20 06:56:49 +01:00
/// </summary>
Win32S = 0,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Win32 (Windows 9x)
2017-04-20 06:56:49 +01:00
/// </summary>
Win32Windows = 1,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Windows NT
2017-04-20 06:56:49 +01:00
/// </summary>
Win32NT = 2,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Windows Mobile
2017-04-20 06:56:49 +01:00
/// </summary>
WinCE = 3,
/// <summary>
2017-12-30 00:32:21 +00:00
/// UNIX (do not use, too generic)
2017-04-20 06:56:49 +01:00
/// </summary>
Unix = 4,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Xbox 360
2017-04-20 06:56:49 +01:00
/// </summary>
Xbox = 5,
/// <summary>
2017-12-30 00:32:21 +00:00
/// OS X
2017-04-20 06:56:49 +01:00
/// </summary>
MacOSX = 6,
/// <summary>
2017-12-30 00:32:21 +00:00
/// iOS is not OS X
2017-04-20 06:56:49 +01:00
/// </summary>
iOS = 7,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Linux
2017-04-20 06:56:49 +01:00
/// </summary>
Linux = 8,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Sun Solaris
2017-04-20 06:56:49 +01:00
/// </summary>
Solaris = 9,
/// <summary>
2017-12-30 00:32:21 +00:00
/// NetBSD
2017-04-20 06:56:49 +01:00
/// </summary>
NetBSD = 10,
/// <summary>
2017-12-30 00:32:21 +00:00
/// OpenBSD
2017-04-20 06:56:49 +01:00
/// </summary>
OpenBSD = 11,
/// <summary>
2017-12-30 00:32:21 +00:00
/// FreeBSD
2017-04-20 06:56:49 +01:00
/// </summary>
FreeBSD = 12,
/// <summary>
2017-12-30 00:32:21 +00:00
/// DragonFly BSD
2017-04-20 06:56:49 +01:00
/// </summary>
DragonFly = 13,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Nintendo Wii
2017-04-20 06:56:49 +01:00
/// </summary>
Wii = 14,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Nintendo Wii U
2017-04-20 06:56:49 +01:00
/// </summary>
WiiU = 15,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Sony PlayStation 3
2017-04-20 06:56:49 +01:00
/// </summary>
PlayStation3 = 16,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Sony Playstation 4
2017-04-20 06:56:49 +01:00
/// </summary>
PlayStation4 = 17,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Google Android
2017-04-20 06:56:49 +01:00
/// </summary>
Android = 18,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Samsung Tizen
2017-04-20 06:56:49 +01:00
/// </summary>
Tizen = 19,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Windows Phone
2017-04-20 06:56:49 +01:00
/// </summary>
WindowsPhone = 20,
/// <summary>
2017-12-30 00:32:21 +00:00
/// GNU/Hurd
2017-04-20 06:56:49 +01:00
/// </summary>
Hurd = 21,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Haiku
2017-04-20 06:56:49 +01:00
/// </summary>
Haiku = 22,
/// <summary>
2017-12-30 00:32:21 +00:00
/// HP-UX
2017-04-20 06:56:49 +01:00
/// </summary>
HPUX = 23,
/// <summary>
2017-12-30 00:32:21 +00:00
/// AIX
2017-04-20 06:56:49 +01:00
/// </summary>
AIX = 24,
/// <summary>
2017-12-30 00:32:21 +00:00
/// OS/400
2017-04-20 06:56:49 +01:00
/// </summary>
OS400 = 25,
/// <summary>
2017-12-30 00:32:21 +00:00
/// IRIX
2017-04-20 06:56:49 +01:00
/// </summary>
IRIX = 26,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Minix
2017-04-20 06:56:49 +01:00
/// </summary>
Minix = 27,
/// <summary>
2017-12-30 00:32:21 +00:00
/// NonStop
2017-04-20 06:56:49 +01:00
/// </summary>
NonStop = 28,
/// <summary>
2017-12-30 00:32:21 +00:00
/// QNX
2017-04-20 06:56:49 +01:00
/// </summary>
QNX = 29,
/// <summary>
2017-12-30 00:32:21 +00:00
/// SINIX
2017-04-20 06:56:49 +01:00
/// </summary>
SINIX = 30,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Tru64 UNIX
2017-04-20 06:56:49 +01:00
/// </summary>
Tru64 = 31,
/// <summary>
2017-12-30 00:32:21 +00:00
/// Ultrix
2017-04-20 06:56:49 +01:00
/// </summary>
Ultrix = 32,
/// <summary>
2017-12-30 00:32:21 +00:00
/// SCO OpenServer / SCO UNIX
2017-04-20 06:56:49 +01:00
/// </summary>
OpenServer = 33,
/// <summary>
2017-12-30 00:32:21 +00:00
/// SCO UnixWare
2017-04-20 06:56:49 +01:00
/// </summary>
UnixWare = 34,
/// <summary>
2017-12-30 00:32:21 +00:00
/// IBM z/OS
2017-04-20 06:56:49 +01:00
/// </summary>
2017-12-30 00:32:21 +00:00
zOS = 35,
2017-04-20 06:56:49 +01:00
Unknown = -1
}
}