VirtualBox

source: vbox/trunk/include/VBox/ostypes.h@ 52664

Last change on this file since 52664 was 49074, checked in by vboxsync, 11 years ago

Main, FE/Qt: Added a triple fault handling OS hint and a new OS/2 1.x guest type.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.0 KB
RevLine 
[1]1/** @file
2 * VirtualBox - Global Guest Operating System definition.
3 */
4
5/*
[43363]6 * Copyright (C) 2006-2012 Oracle Corporation
[1]7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
[5999]11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
[1]24 */
25
[3632]26#ifndef ___VBox_ostypes_h
27#define ___VBox_ostypes_h
[1]28
29#include <iprt/cdefs.h>
30
[20374]31RT_C_DECLS_BEGIN
[1]32
33/**
[7233]34 * Global list of guest operating system types.
35 *
36 * They are grouped into families. A family identifer is always has
37 * mod 0x10000 == 0. New entries can be added, however other components
38 * depend on the values (e.g. the Qt GUI and guest additions) so the
39 * existing values MUST stay the same.
[10310]40 *
41 * Note: distinguish between 32 & 64 bits guest OSes by checking bit 8 (mod 0x100)
[1]42 */
[7233]43typedef enum VBOXOSTYPE
[1]44{
[10310]45 VBOXOSTYPE_Unknown = 0,
[46341]46 VBOXOSTYPE_Unknown_x64 = 0x00100,
[10310]47 VBOXOSTYPE_DOS = 0x10000,
48 VBOXOSTYPE_Win31 = 0x15000,
49 VBOXOSTYPE_Win9x = 0x20000,
50 VBOXOSTYPE_Win95 = 0x21000,
51 VBOXOSTYPE_Win98 = 0x22000,
52 VBOXOSTYPE_WinMe = 0x23000,
53 VBOXOSTYPE_WinNT = 0x30000,
[46341]54 VBOXOSTYPE_WinNT_x64 = 0x30100,
[10310]55 VBOXOSTYPE_WinNT4 = 0x31000,
56 VBOXOSTYPE_Win2k = 0x32000,
57 VBOXOSTYPE_WinXP = 0x33000,
58 VBOXOSTYPE_WinXP_x64 = 0x33100,
59 VBOXOSTYPE_Win2k3 = 0x34000,
60 VBOXOSTYPE_Win2k3_x64 = 0x34100,
61 VBOXOSTYPE_WinVista = 0x35000,
62 VBOXOSTYPE_WinVista_x64 = 0x35100,
63 VBOXOSTYPE_Win2k8 = 0x36000,
64 VBOXOSTYPE_Win2k8_x64 = 0x36100,
[15968]65 VBOXOSTYPE_Win7 = 0x37000,
66 VBOXOSTYPE_Win7_x64 = 0x37100,
[38755]67 VBOXOSTYPE_Win8 = 0x38000,
68 VBOXOSTYPE_Win8_x64 = 0x38100,
[43248]69 VBOXOSTYPE_Win2k12_x64 = 0x39100,
[46876]70 VBOXOSTYPE_Win81 = 0x3A000,
71 VBOXOSTYPE_Win81_x64 = 0x3A100,
[10310]72 VBOXOSTYPE_OS2 = 0x40000,
73 VBOXOSTYPE_OS2Warp3 = 0x41000,
74 VBOXOSTYPE_OS2Warp4 = 0x42000,
75 VBOXOSTYPE_OS2Warp45 = 0x43000,
76 VBOXOSTYPE_ECS = 0x44000,
[49074]77 VBOXOSTYPE_OS21x = 0x48000,
[10310]78 VBOXOSTYPE_Linux = 0x50000,
79 VBOXOSTYPE_Linux_x64 = 0x50100,
80 VBOXOSTYPE_Linux22 = 0x51000,
81 VBOXOSTYPE_Linux24 = 0x52000,
82 VBOXOSTYPE_Linux24_x64 = 0x52100,
83 VBOXOSTYPE_Linux26 = 0x53000,
84 VBOXOSTYPE_Linux26_x64 = 0x53100,
85 VBOXOSTYPE_ArchLinux = 0x54000,
86 VBOXOSTYPE_ArchLinux_x64 = 0x54100,
87 VBOXOSTYPE_Debian = 0x55000,
88 VBOXOSTYPE_Debian_x64 = 0x55100,
89 VBOXOSTYPE_OpenSUSE = 0x56000,
90 VBOXOSTYPE_OpenSUSE_x64 = 0x56100,
91 VBOXOSTYPE_FedoraCore = 0x57000,
92 VBOXOSTYPE_FedoraCore_x64 = 0x57100,
93 VBOXOSTYPE_Gentoo = 0x58000,
94 VBOXOSTYPE_Gentoo_x64 = 0x58100,
95 VBOXOSTYPE_Mandriva = 0x59000,
96 VBOXOSTYPE_Mandriva_x64 = 0x59100,
97 VBOXOSTYPE_RedHat = 0x5A000,
98 VBOXOSTYPE_RedHat_x64 = 0x5A100,
[17721]99 VBOXOSTYPE_Turbolinux = 0x5B000,
[27820]100 VBOXOSTYPE_Turbolinux_x64 = 0x5B100,
[17721]101 VBOXOSTYPE_Ubuntu = 0x5C000,
102 VBOXOSTYPE_Ubuntu_x64 = 0x5C100,
103 VBOXOSTYPE_Xandros = 0x5D000,
104 VBOXOSTYPE_Xandros_x64 = 0x5D100,
[26205]105 VBOXOSTYPE_Oracle = 0x5E000,
106 VBOXOSTYPE_Oracle_x64 = 0x5E100,
[10310]107 VBOXOSTYPE_FreeBSD = 0x60000,
108 VBOXOSTYPE_FreeBSD_x64 = 0x60100,
109 VBOXOSTYPE_OpenBSD = 0x61000,
110 VBOXOSTYPE_OpenBSD_x64 = 0x61100,
111 VBOXOSTYPE_NetBSD = 0x62000,
112 VBOXOSTYPE_NetBSD_x64 = 0x62100,
113 VBOXOSTYPE_Netware = 0x70000,
114 VBOXOSTYPE_Solaris = 0x80000,
115 VBOXOSTYPE_Solaris_x64 = 0x80100,
116 VBOXOSTYPE_OpenSolaris = 0x81000,
117 VBOXOSTYPE_OpenSolaris_x64 = 0x81100,
[39248]118 VBOXOSTYPE_Solaris11_x64 = 0x82100,
[10310]119 VBOXOSTYPE_L4 = 0x90000,
[15064]120 VBOXOSTYPE_QNX = 0xA0000,
[26333]121 VBOXOSTYPE_MacOS = 0xB0000,
122 VBOXOSTYPE_MacOS_x64 = 0xB0100,
[48685]123 VBOXOSTYPE_MacOS106 = 0xB2000,
124 VBOXOSTYPE_MacOS106_x64 = 0xB2100,
125 VBOXOSTYPE_MacOS107_x64 = 0xB3100,
126 VBOXOSTYPE_MacOS108_x64 = 0xB4100,
127 VBOXOSTYPE_MacOS109_x64 = 0xB5100,
[34497]128 VBOXOSTYPE_JRockitVE = 0xC0000,
[43363]129 VBOXOSTYPE_Haiku = 0xD0000,
130 VBOXOSTYPE_Haiku_x64 = 0xD0100,
[34521]131/** The bit number which indicates 64-bit or 32-bit. */
132#define VBOXOSTYPE_x64_BIT 8
133 /** The mask which indicates 64-bit. */
134 VBOXOSTYPE_x64 = 1 << VBOXOSTYPE_x64_BIT,
[7233]135 /** The usual 32-bit hack. */
136 VBOXOSTYPE_32BIT_HACK = 0x7fffffff
137} VBOXOSTYPE;
[1]138
[34521]139
[29307]140/**
141 * Global list of guest OS families.
142 */
143typedef enum VBOXOSFAMILY
144{
145 VBOXOSFAMILY_Unknown = 0,
146 VBOXOSFAMILY_Windows32 = 1,
147 VBOXOSFAMILY_Windows64 = 2,
148 VBOXOSFAMILY_Linux32 = 3,
149 VBOXOSFAMILY_Linux64 = 4,
150 VBOXOSFAMILY_FreeBSD32 = 5,
151 VBOXOSFAMILY_FreeBSD64 = 6,
152 VBOXOSFAMILY_Solaris32 = 7,
153 VBOXOSFAMILY_Solaris64 = 8,
154 VBOXOSFAMILY_MacOSX32 = 9,
155 VBOXOSFAMILY_MacOSX64 = 10,
156 /** The usual 32-bit hack. */
157 VBOXOSFAMILY_32BIT_HACK = 0x7fffffff
158} VBOXOSFAMILY;
159
[20374]160RT_C_DECLS_END
[1]161
[3633]162#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette