VirtualBox

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

最後變更 在這個檔案是 107852,由 vboxsync 提交於 8 週 前

VBox/ostypes.h+Main/{Global,Appliance}+VMMDev+FE/Qt: Remove the 'Windows
10 on ARM' OStype and related entries since it isn't a supported guest
OS and there are no plans to implement such support. bugref:10732

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 17.4 KB
 
1/** @file
2 * VirtualBox - Global Guest Operating System definition.
3 */
4
5/*
6 * Copyright (C) 2006-2024 Oracle and/or its affiliates.
7 *
8 * This file is part of VirtualBox base platform packages, as
9 * available from https://www.alldomusa.eu.org.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation, in version 3 of the
14 * License.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <https://www.gnu.org/licenses>.
23 *
24 * The contents of this file may alternatively be used under the terms
25 * of the Common Development and Distribution License Version 1.0
26 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
27 * in the VirtualBox distribution, in which case the provisions of the
28 * CDDL are applicable instead of those of the GPL.
29 *
30 * You may elect to license modified versions of this file under the
31 * terms and conditions of either the GPL or the CDDL or both.
32 *
33 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
34 */
35
36#ifndef VBOX_INCLUDED_ostypes_h
37#define VBOX_INCLUDED_ostypes_h
38#ifndef RT_WITHOUT_PRAGMA_ONCE
39# pragma once
40#endif
41
42#include <iprt/cdefs.h>
43
44RT_C_DECLS_BEGIN
45
46/**
47 * Global list of guest operating system types.
48 *
49 * New entries can be added, however other components depend on the values (e.g.
50 * the guest additions) so the existing values MUST stay the same.
51 *
52 * Summary of the value bits:
53 * - bits 31:24 - 0xff000000 - Reserved; more OS version bits if needed.
54 * - bits 23:16 - 0x00ff0000 - OS family.
55 * - bits 15:12 - 0x0000f000 - Major OS version or (Linux) distro.
56 * - bit 11 - 0x00000800 - Should've been arch, only use by WinNT31.
57 * - bits 10:08 - 0x00000700 - Architecture.
58 * - bits 07:00 - 0x000000ff - Major distro release (Linux), or more bits
59 * for major OS version.
60 *
61 * They are grouped into families. A family identifer is always has
62 * mod 0x10000 == 0. The bits making up the family component is given by
63 * VBOXOSTYPE_OsFamilyMask, as we probably won't need 32K OS families and
64 * currently restrict ourselves to 256 (currently only 14 + unknown have been
65 * defined).
66 *
67 * The VBOXOSTYPE_OsTypeMask value contains the OS family and the major OS
68 * version / distro. So use with care.
69 *
70 *
71 * The VBOXOSTYPE_OsMask value contains all bits except for the architecture.
72 * Use this and VBOXOSTYPE_ArchitectureMask for morphing the architecture of an
73 * specific OS type.
74 *
75 * The subdivision of the OS type bits other than the family (and architecture),
76 * i.e. VBOXOSTYPE_OsTypeMask & ~VBOXOSTYPE_OsFamilyMask, are specific to each
77 * OS family. For Linux the 0xf000 mask currently identifies the distro and
78 * 0xff the major release of that distro in most cases. While for most other
79 * families 0xf000 is used for identifying major OS releases (Windows is out of
80 * space with Windows 11, so will have to think of something new there when/if
81 * the next major release is out).
82 *
83 * @note Do NOT use bit 11 (0x800) for anything. It is currently only used by
84 * VBOXOSTYPE_WinNT3x and we'd like to keep it that way in case we ever
85 * end up needing more than three new architectures.
86 *
87 * @note Cleaning up the value structure here is a bit late. The problem is
88 * the use of this type in VBoxGuestInfo (VMMDevReq_ReportGuestInfo).
89 * Any radical change here would require a new version (v3) of that
90 * request and a safe protocol for dealing with backwards / forwards
91 * compatiblity on both sides. Then we need a very thoughful
92 * partitioning of the value bits, picking new constants and mapping
93 * from old to new types (we only need the one direction).
94 *
95 * @todo r=bird: A more sensible layout of the bits would, imo be:
96 * - bit 31 - 0x80000000 - the sign bit, forever unused.
97 * - bits 30:24 - 0x7f000000 - OS family
98 * - bits 23:16 - 0x00ff0000 - OS sub-family / distro.
99 * - bits 15:08 - 0x0000ff00 - OS major release.
100 * - bits 07:04 - 0x000000f0 - Reserved for future hacks.
101 * - bits 03:00 - 0x0000000f - Architecture.
102 * Basic conversion could be done by value shifting, though using a map
103 * with known values would allow for more thorough cleanup.
104 */
105typedef enum VBOXOSTYPE
106{
107 VBOXOSTYPE_Unknown = 0x00000,
108 VBOXOSTYPE_Unknown_x64 = 0x00100,
109 VBOXOSTYPE_Unknown_arm32 = 0x00200,
110 VBOXOSTYPE_Unknown_arm64 = 0x00300,
111
112 /** @name DOS and it's descendants
113 * @{ */
114 VBOXOSTYPE_DOS = 0x10000,
115 VBOXOSTYPE_Win31 = 0x15000,
116
117 VBOXOSTYPE_Win9x = 0x20000,
118 VBOXOSTYPE_Win95 = 0x21000,
119 VBOXOSTYPE_Win98 = 0x22000,
120 VBOXOSTYPE_WinMe = 0x23000,
121
122 VBOXOSTYPE_WinNT = 0x30000,
123 VBOXOSTYPE_WinNT_x64 = 0x30100,
124 VBOXOSTYPE_WinNT3x = 0x30800,
125 VBOXOSTYPE_WinNT4 = 0x31000,
126 VBOXOSTYPE_Win2k = 0x32000,
127 VBOXOSTYPE_WinXP = 0x33000,
128 VBOXOSTYPE_WinXP_x64 = 0x33100,
129 VBOXOSTYPE_Win2k3 = 0x34000,
130 VBOXOSTYPE_Win2k3_x64 = 0x34100,
131 VBOXOSTYPE_WinVista = 0x35000,
132 VBOXOSTYPE_WinVista_x64 = 0x35100,
133 VBOXOSTYPE_Win2k8 = 0x36000,
134 VBOXOSTYPE_Win2k8_x64 = 0x36100,
135 VBOXOSTYPE_Win7 = 0x37000,
136 VBOXOSTYPE_Win7_x64 = 0x37100,
137 VBOXOSTYPE_Win8 = 0x38000,
138 VBOXOSTYPE_Win8_x64 = 0x38100,
139 VBOXOSTYPE_Win2k12_x64 = 0x39100,
140 VBOXOSTYPE_Win81 = 0x3A000,
141 VBOXOSTYPE_Win81_x64 = 0x3A100,
142 VBOXOSTYPE_Win10 = 0x3B000,
143 VBOXOSTYPE_Win10_x64 = 0x3B100,
144 VBOXOSTYPE_Win2k16_x64 = 0x3C100,
145 VBOXOSTYPE_Win2k19_x64 = 0x3D100,
146 VBOXOSTYPE_Win11_x64 = 0x3E100,
147 VBOXOSTYPE_Win11_arm64 = 0x3E300,
148 VBOXOSTYPE_Win2k22_x64 = 0x3F100,
149 VBOXOSTYPE_Win2k25_x64 = 0x3F101,
150
151 VBOXOSTYPE_OS2 = 0x40000,
152 VBOXOSTYPE_OS2Warp3 = 0x41000,
153 VBOXOSTYPE_OS2Warp4 = 0x42000,
154 VBOXOSTYPE_OS2Warp45 = 0x43000,
155 VBOXOSTYPE_ECS = 0x44000,
156 VBOXOSTYPE_ArcaOS = 0x45000,
157 VBOXOSTYPE_OS21x = 0x48000,
158 /** @} */
159 /** @name Linux
160 * @{ */
161 VBOXOSTYPE_Linux = 0x50000,
162 VBOXOSTYPE_Linux_x64 = 0x50100,
163 VBOXOSTYPE_Linux22 = 0x51000,
164 VBOXOSTYPE_Linux24 = 0x52000,
165 VBOXOSTYPE_Linux24_x64 = 0x52100,
166 VBOXOSTYPE_Linux26 = 0x53000,
167 VBOXOSTYPE_Linux26_x64 = 0x53100,
168 VBOXOSTYPE_ArchLinux = 0x54000,
169 VBOXOSTYPE_ArchLinux_x64 = 0x54100,
170 VBOXOSTYPE_ArchLinux_arm64 = 0x54300,
171 VBOXOSTYPE_Debian = 0x55000,
172 VBOXOSTYPE_Debian_x64 = 0x55100,
173 VBOXOSTYPE_Debian_arm32 = 0x55200,
174 VBOXOSTYPE_Debian_arm64 = 0x55300,
175 VBOXOSTYPE_Debian31 = 0x55001, // 32-bit only
176 VBOXOSTYPE_Debian4 = 0x55002,
177 VBOXOSTYPE_Debian4_x64 = 0x55102,
178 VBOXOSTYPE_Debian5 = 0x55003,
179 VBOXOSTYPE_Debian5_x64 = 0x55103,
180 VBOXOSTYPE_Debian6 = 0x55004,
181 VBOXOSTYPE_Debian6_x64 = 0x55104,
182 VBOXOSTYPE_Debian7 = 0x55005,
183 VBOXOSTYPE_Debian7_x64 = 0x55105,
184 VBOXOSTYPE_Debian8 = 0x55006,
185 VBOXOSTYPE_Debian8_x64 = 0x55106,
186 VBOXOSTYPE_Debian9 = 0x55007,
187 VBOXOSTYPE_Debian9_x64 = 0x55107,
188 VBOXOSTYPE_Debian9_arm64 = 0x55307,
189 VBOXOSTYPE_Debian10 = 0x55008,
190 VBOXOSTYPE_Debian10_x64 = 0x55108,
191 VBOXOSTYPE_Debian10_arm64 = 0x55308,
192 VBOXOSTYPE_Debian11 = 0x55009,
193 VBOXOSTYPE_Debian11_x64 = 0x55109,
194 VBOXOSTYPE_Debian11_arm64 = 0x55309,
195 VBOXOSTYPE_Debian12 = 0x5500a,
196 VBOXOSTYPE_Debian12_x64 = 0x5510a,
197 VBOXOSTYPE_Debian12_arm64 = 0x5530a,
198 VBOXOSTYPE_Debian_latest_x64 = VBOXOSTYPE_Debian12_x64,
199 VBOXOSTYPE_Debian_latest_arm64 = VBOXOSTYPE_Debian12_arm64,
200 VBOXOSTYPE_OpenSUSE = 0x56000,
201 VBOXOSTYPE_OpenSUSE_x64 = 0x56100,
202 VBOXOSTYPE_OpenSUSE_Leap_x64 = 0x56101, // 64-bit only
203 VBOXOSTYPE_OpenSUSE_Leap_arm64 = 0x56301,
204 VBOXOSTYPE_OpenSUSE_Tumbleweed = 0x56002,
205 VBOXOSTYPE_OpenSUSE_Tumbleweed_x64 = 0x56102,
206 VBOXOSTYPE_OpenSUSE_Tumbleweed_arm64 = 0x56302,
207 VBOXOSTYPE_SUSE_LE = 0x56003,
208 VBOXOSTYPE_SUSE_LE_x64 = 0x56103,
209 VBOXOSTYPE_FedoraCore = 0x57000,
210 VBOXOSTYPE_FedoraCore_x64 = 0x57100,
211 VBOXOSTYPE_FedoraCore_arm64 = 0x57300,
212 VBOXOSTYPE_Gentoo = 0x58000,
213 VBOXOSTYPE_Gentoo_x64 = 0x58100,
214 VBOXOSTYPE_Mandriva = 0x59000,
215 VBOXOSTYPE_Mandriva_x64 = 0x59100,
216 VBOXOSTYPE_OpenMandriva_Lx = 0x59001,
217 VBOXOSTYPE_OpenMandriva_Lx_x64 = 0x59101,
218 VBOXOSTYPE_PCLinuxOS = 0x59002,
219 VBOXOSTYPE_PCLinuxOS_x64 = 0x59102,
220 VBOXOSTYPE_Mageia = 0x59003,
221 VBOXOSTYPE_Mageia_x64 = 0x59103,
222 VBOXOSTYPE_RedHat = 0x5A000,
223 VBOXOSTYPE_RedHat_x64 = 0x5A100,
224 VBOXOSTYPE_RedHat_arm32 = 0x5A200,
225 VBOXOSTYPE_RedHat_arm64 = 0x5A300,
226 VBOXOSTYPE_RedHat3 = 0x5A001,
227 VBOXOSTYPE_RedHat3_x64 = 0x5A101,
228 VBOXOSTYPE_RedHat4 = 0x5A002,
229 VBOXOSTYPE_RedHat4_x64 = 0x5A102,
230 VBOXOSTYPE_RedHat5 = 0x5A003,
231 VBOXOSTYPE_RedHat5_x64 = 0x5A103,
232 VBOXOSTYPE_RedHat6 = 0x5A004,
233 VBOXOSTYPE_RedHat6_x64 = 0x5A104,
234 VBOXOSTYPE_RedHat7_x64 = 0x5A105, // 64-bit only
235 VBOXOSTYPE_RedHat7_arm64 = 0x5A305, // 64-bit only
236 VBOXOSTYPE_RedHat8_x64 = 0x5A106, // 64-bit only
237 VBOXOSTYPE_RedHat8_arm64 = 0x5A306, // 64-bit only
238 VBOXOSTYPE_RedHat9_x64 = 0x5A107, // 64-bit only
239 VBOXOSTYPE_RedHat9_arm64 = 0x5A307, // 64-bit only
240 VBOXOSTYPE_RedHat_latest_x64 = VBOXOSTYPE_RedHat9_x64,
241 VBOXOSTYPE_Turbolinux = 0x5B000,
242 VBOXOSTYPE_Turbolinux_x64 = 0x5B100,
243 VBOXOSTYPE_Ubuntu = 0x5C000,
244 VBOXOSTYPE_Ubuntu_x64 = 0x5C100,
245 VBOXOSTYPE_Ubuntu_arm32 = 0x5C200,
246 VBOXOSTYPE_Ubuntu_arm64 = 0x5C300,
247 VBOXOSTYPE_Xubuntu = 0x5C001,
248 VBOXOSTYPE_Xubuntu_x64 = 0x5C101,
249 VBOXOSTYPE_Lubuntu = 0x5C002,
250 VBOXOSTYPE_Lubuntu_x64 = 0x5C102,
251 VBOXOSTYPE_Ubuntu10_LTS = 0x5C003,
252 VBOXOSTYPE_Ubuntu10_LTS_x64 = 0x5C103,
253 VBOXOSTYPE_Ubuntu10 = 0x5C004,
254 VBOXOSTYPE_Ubuntu10_x64 = 0x5C104,
255 VBOXOSTYPE_Ubuntu11 = 0x5C005,
256 VBOXOSTYPE_Ubuntu11_x64 = 0x5C105,
257 VBOXOSTYPE_Ubuntu12_LTS = 0x5C006,
258 VBOXOSTYPE_Ubuntu12_LTS_x64 = 0x5C106,
259 VBOXOSTYPE_Ubuntu12 = 0x5C007,
260 VBOXOSTYPE_Ubuntu12_x64 = 0x5C107,
261 VBOXOSTYPE_Ubuntu13 = 0x5C008,
262 VBOXOSTYPE_Ubuntu13_x64 = 0x5C108,
263 VBOXOSTYPE_Ubuntu14_LTS = 0x5C009,
264 VBOXOSTYPE_Ubuntu14_LTS_x64 = 0x5C109,
265 VBOXOSTYPE_Ubuntu14 = 0x5C00a,
266 VBOXOSTYPE_Ubuntu14_x64 = 0x5C10a,
267 VBOXOSTYPE_Ubuntu15 = 0x5C00b,
268 VBOXOSTYPE_Ubuntu15_x64 = 0x5C10b,
269 VBOXOSTYPE_Ubuntu16_LTS = 0x5C00c,
270 VBOXOSTYPE_Ubuntu16_LTS_x64 = 0x5C10c,
271 VBOXOSTYPE_Ubuntu16 = 0x5C00d,
272 VBOXOSTYPE_Ubuntu16_x64 = 0x5C10d,
273 VBOXOSTYPE_Ubuntu17 = 0x5C00e,
274 VBOXOSTYPE_Ubuntu17_x64 = 0x5C10e,
275 VBOXOSTYPE_Ubuntu18_LTS = 0x5C00f,
276 VBOXOSTYPE_Ubuntu18_LTS_x64 = 0x5C10f,
277 VBOXOSTYPE_Ubuntu18 = 0x5C010,
278 VBOXOSTYPE_Ubuntu18_x64 = 0x5C110,
279 VBOXOSTYPE_Ubuntu19 = 0x5C011,
280 VBOXOSTYPE_Ubuntu19_x64 = 0x5C111,
281 VBOXOSTYPE_Ubuntu20_LTS_x64 = 0x5C112, // 64-bit only
282 VBOXOSTYPE_Ubuntu20_x64 = 0x5C113, // 64-bit only
283 VBOXOSTYPE_Ubuntu21_x64 = 0x5C114, // 64-bit only
284 VBOXOSTYPE_Ubuntu22_LTS_x64 = 0x5C115, // 64-bit only
285 VBOXOSTYPE_Ubuntu22_x64 = 0x5C116, // 64-bit only
286 VBOXOSTYPE_Ubuntu22_arm64 = 0x5C316, // 64-bit only
287 VBOXOSTYPE_Ubuntu23_x64 = 0x5C117, // 64-bit only
288 VBOXOSTYPE_Ubuntu23_arm64 = 0x5C317, // 64-bit only
289 VBOXOSTYPE_Ubuntu231_x64 = 0x5C119, // 64-bit only
290 VBOXOSTYPE_Ubuntu231_arm64 = 0x5C319, // 64-bit only
291 VBOXOSTYPE_Ubuntu24_LTS_x64 = 0x5C118, // 64-bit only
292 VBOXOSTYPE_Ubuntu24_LTS_arm64 = 0x5C318, // 64-bit only
293 VBOXOSTYPE_Ubuntu24_x64 = 0x5C120, // 64-bit only
294 VBOXOSTYPE_Ubuntu24_arm64 = 0x5C320, // 64-bit only
295 VBOXOSTYPE_Ubuntu_latest_x64 = VBOXOSTYPE_Ubuntu24_x64,
296 VBOXOSTYPE_Ubuntu_latest_arm64 = VBOXOSTYPE_Ubuntu24_arm64,
297 VBOXOSTYPE_Xandros = 0x5D000,
298 VBOXOSTYPE_Xandros_x64 = 0x5D100,
299 VBOXOSTYPE_Oracle = 0x5E000,
300 VBOXOSTYPE_Oracle_x64 = 0x5E100,
301 VBOXOSTYPE_Oracle_arm32 = 0x5E200,
302 VBOXOSTYPE_Oracle_arm64 = 0x5E300,
303 VBOXOSTYPE_Oracle4 = 0x5E001,
304 VBOXOSTYPE_Oracle4_x64 = 0x5E101,
305 VBOXOSTYPE_Oracle5 = 0x5E002,
306 VBOXOSTYPE_Oracle5_x64 = 0x5E102,
307 VBOXOSTYPE_Oracle6 = 0x5E003,
308 VBOXOSTYPE_Oracle6_x64 = 0x5E103,
309 VBOXOSTYPE_Oracle7_x64 = 0x5E104, // 64-bit only
310 VBOXOSTYPE_Oracle7_arm64 = 0x5E304, // 64-bit only
311 VBOXOSTYPE_Oracle8_x64 = 0x5E105, // 64-bit only
312 VBOXOSTYPE_Oracle8_arm64 = 0x5E305, // 64-bit only
313 VBOXOSTYPE_Oracle9_x64 = 0x5E106, // 64-bit only
314 VBOXOSTYPE_Oracle9_arm64 = 0x5E306,
315 VBOXOSTYPE_Oracle_latest_x64 = VBOXOSTYPE_Oracle9_x64,
316 VBOXOSTYPE_Oracle_latest_arm64 = VBOXOSTYPE_Oracle9_arm64,
317 /** @} */
318 /** @name BSD and it's descendants
319 * @{ */
320 VBOXOSTYPE_FreeBSD = 0x60000,
321 VBOXOSTYPE_FreeBSD_x64 = 0x60100,
322 VBOXOSTYPE_FreeBSD_arm64 = 0x60300,
323 VBOXOSTYPE_OpenBSD = 0x61000,
324 VBOXOSTYPE_OpenBSD_x64 = 0x61100,
325 VBOXOSTYPE_OpenBSD_arm64 = 0x61300,
326 VBOXOSTYPE_NetBSD = 0x62000,
327 VBOXOSTYPE_NetBSD_x64 = 0x62100,
328 VBOXOSTYPE_NetBSD_arm64 = 0x62300,
329 /** @} */
330 VBOXOSTYPE_Netware = 0x70000,
331 /** @name Solaris
332 * @{ */
333 VBOXOSTYPE_Solaris = 0x80000, // Solaris 10U7 (5/09) and earlier
334 VBOXOSTYPE_Solaris_x64 = 0x80100, // Solaris 10U7 (5/09) and earlier
335 VBOXOSTYPE_Solaris10U8_or_later = 0x80001,
336 VBOXOSTYPE_Solaris10U8_or_later_x64 = 0x80101,
337 VBOXOSTYPE_OpenSolaris = 0x81000,
338 VBOXOSTYPE_OpenSolaris_x64 = 0x81100,
339 VBOXOSTYPE_Solaris11_x64 = 0x82100,
340 /** @} */
341 VBOXOSTYPE_L4 = 0x90000,
342 VBOXOSTYPE_QNX = 0xA0000,
343 /** @name MacOS
344 * @{ */
345 VBOXOSTYPE_MacOS = 0xB0000,
346 VBOXOSTYPE_MacOS_x64 = 0xB0100,
347 VBOXOSTYPE_MacOS106 = 0xB2000,
348 VBOXOSTYPE_MacOS106_x64 = 0xB2100,
349 VBOXOSTYPE_MacOS107_x64 = 0xB3100,
350 VBOXOSTYPE_MacOS108_x64 = 0xB4100,
351 VBOXOSTYPE_MacOS109_x64 = 0xB5100,
352 VBOXOSTYPE_MacOS1010_x64 = 0xB6100,
353 VBOXOSTYPE_MacOS1011_x64 = 0xB7100,
354 VBOXOSTYPE_MacOS1012_x64 = 0xB8100,
355 VBOXOSTYPE_MacOS1013_x64 = 0xB9100,
356 /** @} */
357 /** @name Other OSes and stuff
358 * @{ */
359 VBOXOSTYPE_JRockitVE = 0xC0000,
360 VBOXOSTYPE_Haiku = 0xD0000,
361 VBOXOSTYPE_Haiku_x64 = 0xD0100,
362 VBOXOSTYPE_VBoxBS_x64 = 0xE0100,
363 /** @} */
364
365 /** OS family. */
366 VBOXOSTYPE_OsFamilyMask = 0x00ff0000,
367 /** OS type mask - family + distro / major version.
368 * @note Do not use bit 11 (0x800) ever. It's only used for WinNT3x and that was
369 * a bit unfortunate. If out of bits, start with 24 and up rather than
370 * using bit 11. */
371 VBOXOSTYPE_OsTypeMask = 0x00fff800,
372 /** All the OS bits except architecture.
373 * Useful for changing the architecture of a value. */
374 VBOXOSTYPE_OsMask = 0x00fff8ff,
375
376 /** @name Architecture Type
377 * @{ */
378 /** Mask containing the architecture value. */
379 VBOXOSTYPE_ArchitectureMask = 0x00700,
380 /** Architecture value for 16-bit and 32-bit x86. */
381 VBOXOSTYPE_x86 = 0x00000,
382 /** Architecture value for 64-bit x86 (AMD64). */
383 VBOXOSTYPE_x64 = 0x00100,
384 /** Architecture value for 32-bit ARM. */
385 VBOXOSTYPE_arm32 = 0x00200,
386 /** Architecture value for 64-bit ARM. */
387 VBOXOSTYPE_arm64 = 0x00300,
388 /** Architecture value for unknown or unsupported architectures. */
389 VBOXOSTYPE_UnknownArch = 0x00700,
390 /** @} */
391
392 /** The usual 32-bit hack. */
393 VBOXOSTYPE_32BIT_HACK = 0x7fffffff
394} VBOXOSTYPE;
395
396
397/**
398 * Global list of guest OS families.
399 */
400typedef enum VBOXOSFAMILY
401{
402 VBOXOSFAMILY_Unknown = 0,
403 VBOXOSFAMILY_Windows32 = 1,
404 VBOXOSFAMILY_Windows64 = 2,
405 VBOXOSFAMILY_Linux32 = 3,
406 VBOXOSFAMILY_Linux64 = 4,
407 VBOXOSFAMILY_FreeBSD32 = 5,
408 VBOXOSFAMILY_FreeBSD64 = 6,
409 VBOXOSFAMILY_Solaris32 = 7,
410 VBOXOSFAMILY_Solaris64 = 8,
411 VBOXOSFAMILY_MacOSX32 = 9,
412 VBOXOSFAMILY_MacOSX64 = 10,
413 /** The usual 32-bit hack. */
414 VBOXOSFAMILY_32BIT_HACK = 0x7fffffff
415} VBOXOSFAMILY;
416
417RT_C_DECLS_END
418
419#endif /* !VBOX_INCLUDED_ostypes_h */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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