VirtualBox

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

Last change on this file since 78203 was 76585, checked in by vboxsync, 5 years ago

*: scm --fix-header-guard-endif

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.5 KB
Line 
1/** @file
2 * VirtualBox - Global Guest Operating System definition.
3 */
4
5/*
6 * Copyright (C) 2006-2019 Oracle Corporation
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
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.
24 */
25
26#ifndef VBOX_INCLUDED_ostypes_h
27#define VBOX_INCLUDED_ostypes_h
28#ifndef RT_WITHOUT_PRAGMA_ONCE
29# pragma once
30#endif
31
32#include <iprt/cdefs.h>
33
34RT_C_DECLS_BEGIN
35
36/**
37 * Global list of guest operating system types.
38 *
39 * They are grouped into families. A family identifer is always has
40 * mod 0x10000 == 0. New entries can be added, however other components
41 * depend on the values (e.g. the Qt GUI and guest additions) so the
42 * existing values MUST stay the same.
43 *
44 * Note: distinguish between 32 & 64 bits guest OSes by checking bit 8 (mod 0x100)
45 */
46typedef enum VBOXOSTYPE
47{
48 VBOXOSTYPE_Unknown = 0,
49 VBOXOSTYPE_Unknown_x64 = 0x00100,
50 VBOXOSTYPE_DOS = 0x10000,
51 VBOXOSTYPE_Win31 = 0x15000,
52 VBOXOSTYPE_Win9x = 0x20000,
53 VBOXOSTYPE_Win95 = 0x21000,
54 VBOXOSTYPE_Win98 = 0x22000,
55 VBOXOSTYPE_WinMe = 0x23000,
56 VBOXOSTYPE_WinNT = 0x30000,
57 VBOXOSTYPE_WinNT_x64 = 0x30100,
58 VBOXOSTYPE_WinNT3x = 0x30800,
59 VBOXOSTYPE_WinNT4 = 0x31000,
60 VBOXOSTYPE_Win2k = 0x32000,
61 VBOXOSTYPE_WinXP = 0x33000,
62 VBOXOSTYPE_WinXP_x64 = 0x33100,
63 VBOXOSTYPE_Win2k3 = 0x34000,
64 VBOXOSTYPE_Win2k3_x64 = 0x34100,
65 VBOXOSTYPE_WinVista = 0x35000,
66 VBOXOSTYPE_WinVista_x64 = 0x35100,
67 VBOXOSTYPE_Win2k8 = 0x36000,
68 VBOXOSTYPE_Win2k8_x64 = 0x36100,
69 VBOXOSTYPE_Win7 = 0x37000,
70 VBOXOSTYPE_Win7_x64 = 0x37100,
71 VBOXOSTYPE_Win8 = 0x38000,
72 VBOXOSTYPE_Win8_x64 = 0x38100,
73 VBOXOSTYPE_Win2k12_x64 = 0x39100,
74 VBOXOSTYPE_Win81 = 0x3A000,
75 VBOXOSTYPE_Win81_x64 = 0x3A100,
76 VBOXOSTYPE_Win10 = 0x3B000,
77 VBOXOSTYPE_Win10_x64 = 0x3B100,
78 VBOXOSTYPE_Win2k16_x64 = 0x3C100,
79 VBOXOSTYPE_OS2 = 0x40000,
80 VBOXOSTYPE_OS2Warp3 = 0x41000,
81 VBOXOSTYPE_OS2Warp4 = 0x42000,
82 VBOXOSTYPE_OS2Warp45 = 0x43000,
83 VBOXOSTYPE_ECS = 0x44000,
84 VBOXOSTYPE_OS21x = 0x48000,
85 VBOXOSTYPE_Linux = 0x50000,
86 VBOXOSTYPE_Linux_x64 = 0x50100,
87 VBOXOSTYPE_Linux22 = 0x51000,
88 VBOXOSTYPE_Linux24 = 0x52000,
89 VBOXOSTYPE_Linux24_x64 = 0x52100,
90 VBOXOSTYPE_Linux26 = 0x53000,
91 VBOXOSTYPE_Linux26_x64 = 0x53100,
92 VBOXOSTYPE_ArchLinux = 0x54000,
93 VBOXOSTYPE_ArchLinux_x64 = 0x54100,
94 VBOXOSTYPE_Debian = 0x55000,
95 VBOXOSTYPE_Debian_x64 = 0x55100,
96 VBOXOSTYPE_OpenSUSE = 0x56000,
97 VBOXOSTYPE_OpenSUSE_x64 = 0x56100,
98 VBOXOSTYPE_FedoraCore = 0x57000,
99 VBOXOSTYPE_FedoraCore_x64 = 0x57100,
100 VBOXOSTYPE_Gentoo = 0x58000,
101 VBOXOSTYPE_Gentoo_x64 = 0x58100,
102 VBOXOSTYPE_Mandriva = 0x59000,
103 VBOXOSTYPE_Mandriva_x64 = 0x59100,
104 VBOXOSTYPE_RedHat = 0x5A000,
105 VBOXOSTYPE_RedHat_x64 = 0x5A100,
106 VBOXOSTYPE_Turbolinux = 0x5B000,
107 VBOXOSTYPE_Turbolinux_x64 = 0x5B100,
108 VBOXOSTYPE_Ubuntu = 0x5C000,
109 VBOXOSTYPE_Ubuntu_x64 = 0x5C100,
110 VBOXOSTYPE_Xandros = 0x5D000,
111 VBOXOSTYPE_Xandros_x64 = 0x5D100,
112 VBOXOSTYPE_Oracle = 0x5E000,
113 VBOXOSTYPE_Oracle_x64 = 0x5E100,
114 VBOXOSTYPE_FreeBSD = 0x60000,
115 VBOXOSTYPE_FreeBSD_x64 = 0x60100,
116 VBOXOSTYPE_OpenBSD = 0x61000,
117 VBOXOSTYPE_OpenBSD_x64 = 0x61100,
118 VBOXOSTYPE_NetBSD = 0x62000,
119 VBOXOSTYPE_NetBSD_x64 = 0x62100,
120 VBOXOSTYPE_Netware = 0x70000,
121 VBOXOSTYPE_Solaris = 0x80000,
122 VBOXOSTYPE_Solaris_x64 = 0x80100,
123 VBOXOSTYPE_OpenSolaris = 0x81000,
124 VBOXOSTYPE_OpenSolaris_x64 = 0x81100,
125 VBOXOSTYPE_Solaris11_x64 = 0x82100,
126 VBOXOSTYPE_L4 = 0x90000,
127 VBOXOSTYPE_QNX = 0xA0000,
128 VBOXOSTYPE_MacOS = 0xB0000,
129 VBOXOSTYPE_MacOS_x64 = 0xB0100,
130 VBOXOSTYPE_MacOS106 = 0xB2000,
131 VBOXOSTYPE_MacOS106_x64 = 0xB2100,
132 VBOXOSTYPE_MacOS107_x64 = 0xB3100,
133 VBOXOSTYPE_MacOS108_x64 = 0xB4100,
134 VBOXOSTYPE_MacOS109_x64 = 0xB5100,
135 VBOXOSTYPE_MacOS1010_x64 = 0xB6100,
136 VBOXOSTYPE_MacOS1011_x64 = 0xB7100,
137 VBOXOSTYPE_MacOS1012_x64 = 0xB8100,
138 VBOXOSTYPE_MacOS1013_x64 = 0xB9100,
139 VBOXOSTYPE_JRockitVE = 0xC0000,
140 VBOXOSTYPE_Haiku = 0xD0000,
141 VBOXOSTYPE_Haiku_x64 = 0xD0100,
142 VBOXOSTYPE_VBoxBS_x64 = 0xE0100,
143/** The bit number which indicates 64-bit or 32-bit. */
144#define VBOXOSTYPE_x64_BIT 8
145 /** The mask which indicates 64-bit. */
146 VBOXOSTYPE_x64 = 1 << VBOXOSTYPE_x64_BIT,
147 /** The usual 32-bit hack. */
148 VBOXOSTYPE_32BIT_HACK = 0x7fffffff
149} VBOXOSTYPE;
150
151
152/**
153 * Global list of guest OS families.
154 */
155typedef enum VBOXOSFAMILY
156{
157 VBOXOSFAMILY_Unknown = 0,
158 VBOXOSFAMILY_Windows32 = 1,
159 VBOXOSFAMILY_Windows64 = 2,
160 VBOXOSFAMILY_Linux32 = 3,
161 VBOXOSFAMILY_Linux64 = 4,
162 VBOXOSFAMILY_FreeBSD32 = 5,
163 VBOXOSFAMILY_FreeBSD64 = 6,
164 VBOXOSFAMILY_Solaris32 = 7,
165 VBOXOSFAMILY_Solaris64 = 8,
166 VBOXOSFAMILY_MacOSX32 = 9,
167 VBOXOSFAMILY_MacOSX64 = 10,
168 /** The usual 32-bit hack. */
169 VBOXOSFAMILY_32BIT_HACK = 0x7fffffff
170} VBOXOSFAMILY;
171
172RT_C_DECLS_END
173
174#endif /* !VBOX_INCLUDED_ostypes_h */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use