VirtualBox

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

Last change on this file since 1586 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1/** @file
2 * VirtualBox - Global Guest Operating System definition.
3 */
4
5/*
6 * Copyright (C) 2006 InnoTek Systemberatung GmbH
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 as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#ifndef __VBox_ostypes_h__
22#define __VBox_ostypes_h__
23
24#include <iprt/cdefs.h>
25
26__BEGIN_DECLS
27
28/**
29 * Global list of guest operating system types. They are grouped
30 * into families. A family identifer is always has mod 0x10000 == 0.
31 * New entries can be added, however other components might depend
32 * on the values (e.g. the Qt GUI) so if possible, the values should
33 * stay the same.
34 */
35typedef enum
36{
37 OSTypeUnknown = 0,
38 OSTypeDOS = 0x10000,
39 OSTypeWin31 = 0x15000,
40 OSTypeWin9x = 0x20000,
41 OSTypeWin95 = 0x21000,
42 OSTypeWin98 = 0x22000,
43 OSTypeWinMe = 0x23000,
44 OSTypeWinNT = 0x30000,
45 OSTypeWinNT4 = 0x31000,
46 OSTypeWin2k = 0x32000,
47 OSTypeWinXP = 0x33000,
48 OSTypeWin2k3 = 0x34000,
49 OSTypeWinVista = 0x35000,
50 OSTypeOS2 = 0x40000,
51 OSTypeOS2Warp3 = 0x41000,
52 OSTypeOS2Warp4 = 0x42000,
53 OSTypeOS2Warp45 = 0x43000,
54 OSTypeLinux = 0x50000,
55 OSTypeLinux22 = 0x51000,
56 OSTypeLinux24 = 0x52000,
57 OSTypeLinux26 = 0x53000,
58 OSTypeFreeBSD = 0x60000,
59 OSTypeOpenBSD = 0x61000,
60 OSTypeNetBSD = 0x62000,
61 OSTypeNetware = 0x70000,
62 OSTypeSolaris = 0x80000,
63 OSTypeL4 = 0x90000
64} OSType;
65
66__END_DECLS
67
68#endif /* !__VBox_ostypes_h__ */
69
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