Files
marechai/Marechai/Interop/PlatformID.cs

117 lines
4.2 KiB
C#
Raw Normal View History

2020-05-24 02:12:37 +01:00
// /***************************************************************************
2018-04-11 07:15:03 +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-2018 Natalia Portillo
// ****************************************************************************/
namespace DiscImageChef.Interop
{
2020-02-10 22:44:18 +00:00
/// <summary>Contains an arbitrary list of OSes, even if .NET does not run on them</summary>
2018-04-11 07:15:03 +01:00
public enum PlatformID
{
2020-02-10 22:44:18 +00:00
/// <summary>Win32s</summary>
2018-04-11 07:15:03 +01:00
Win32S = 0,
2020-02-10 22:44:18 +00:00
/// <summary>Win32 (Windows 9x)</summary>
2018-04-11 07:15:03 +01:00
Win32Windows = 1,
2020-02-10 22:44:18 +00:00
/// <summary>Windows NT</summary>
2018-04-11 07:15:03 +01:00
Win32NT = 2,
2020-02-10 22:44:18 +00:00
/// <summary>Windows Mobile</summary>
2018-04-11 07:15:03 +01:00
WinCE = 3,
2020-02-10 22:44:18 +00:00
/// <summary>UNIX (do not use, too generic)</summary>
2018-04-11 07:15:03 +01:00
Unix = 4,
2020-02-10 22:44:18 +00:00
/// <summary>Xbox 360</summary>
2018-04-11 07:15:03 +01:00
Xbox = 5,
2020-02-10 22:44:18 +00:00
/// <summary>OS X</summary>
2018-04-11 07:15:03 +01:00
MacOSX = 6,
2020-02-10 22:44:18 +00:00
/// <summary>iOS is not OS X</summary>
2018-04-11 07:15:03 +01:00
iOS = 7,
2020-02-10 22:44:18 +00:00
/// <summary>Linux</summary>
2018-04-11 07:15:03 +01:00
Linux = 8,
2020-02-10 22:44:18 +00:00
/// <summary>Sun Solaris</summary>
2018-04-11 07:15:03 +01:00
Solaris = 9,
2020-02-10 22:44:18 +00:00
/// <summary>NetBSD</summary>
2018-04-11 07:15:03 +01:00
NetBSD = 10,
2020-02-10 22:44:18 +00:00
/// <summary>OpenBSD</summary>
2018-04-11 07:15:03 +01:00
OpenBSD = 11,
2020-02-10 22:44:18 +00:00
/// <summary>FreeBSD</summary>
2018-04-11 07:15:03 +01:00
FreeBSD = 12,
2020-02-10 22:44:18 +00:00
/// <summary>DragonFly BSD</summary>
2018-04-11 07:15:03 +01:00
DragonFly = 13,
2020-02-10 22:44:18 +00:00
/// <summary>Nintendo Wii</summary>
2018-04-11 07:15:03 +01:00
Wii = 14,
2020-02-10 22:44:18 +00:00
/// <summary>Nintendo Wii U</summary>
2018-04-11 07:15:03 +01:00
WiiU = 15,
2020-02-10 22:44:18 +00:00
/// <summary>Sony PlayStation 3</summary>
2018-04-11 07:15:03 +01:00
PlayStation3 = 16,
2020-02-10 22:44:18 +00:00
/// <summary>Sony Playstation 4</summary>
2018-04-11 07:15:03 +01:00
PlayStation4 = 17,
2020-02-10 22:44:18 +00:00
/// <summary>Google Android</summary>
2018-04-11 07:15:03 +01:00
Android = 18,
2020-02-10 22:44:18 +00:00
/// <summary>Samsung Tizen</summary>
2018-04-11 07:15:03 +01:00
Tizen = 19,
2020-02-10 22:44:18 +00:00
/// <summary>Windows Phone</summary>
2018-04-11 07:15:03 +01:00
WindowsPhone = 20,
2020-02-10 22:44:18 +00:00
/// <summary>GNU/Hurd</summary>
2018-04-11 07:15:03 +01:00
Hurd = 21,
2020-02-10 22:44:18 +00:00
/// <summary>Haiku</summary>
2018-04-11 07:15:03 +01:00
Haiku = 22,
2020-02-10 22:44:18 +00:00
/// <summary>HP-UX</summary>
2018-04-11 07:15:03 +01:00
HPUX = 23,
2020-02-10 22:44:18 +00:00
/// <summary>AIX</summary>
2018-04-11 07:15:03 +01:00
AIX = 24,
2020-02-10 22:44:18 +00:00
/// <summary>OS/400</summary>
2018-04-11 07:15:03 +01:00
OS400 = 25,
2020-02-10 22:44:18 +00:00
/// <summary>IRIX</summary>
2018-04-11 07:15:03 +01:00
IRIX = 26,
2020-02-10 22:44:18 +00:00
/// <summary>Minix</summary>
2018-04-11 07:15:03 +01:00
Minix = 27,
2020-02-10 22:44:18 +00:00
/// <summary>NonStop</summary>
2018-04-11 07:15:03 +01:00
NonStop = 28,
2020-02-10 22:44:18 +00:00
/// <summary>QNX</summary>
2018-04-11 07:15:03 +01:00
QNX = 29,
2020-02-10 22:44:18 +00:00
/// <summary>SINIX</summary>
2018-04-11 07:15:03 +01:00
SINIX = 30,
2020-02-10 22:44:18 +00:00
/// <summary>Tru64 UNIX</summary>
2018-04-11 07:15:03 +01:00
Tru64 = 31,
2020-02-10 22:44:18 +00:00
/// <summary>Ultrix</summary>
2018-04-11 07:15:03 +01:00
Ultrix = 32,
2020-02-10 22:44:18 +00:00
/// <summary>SCO OpenServer / SCO UNIX</summary>
2018-04-11 07:15:03 +01:00
OpenServer = 33,
2020-02-10 22:44:18 +00:00
/// <summary>SCO UnixWare</summary>
2018-04-11 07:15:03 +01:00
UnixWare = 34,
2020-02-10 22:44:18 +00:00
/// <summary>IBM z/OS</summary>
zOS = 35, Unknown = -1
2018-04-11 07:15:03 +01:00
}
}