VirtualBox

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

Last change on this file since 5605 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1/** @file
2 * VirtualBox - Global Guest Operating System definition.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek 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
17#ifndef ___VBox_ostypes_h
18#define ___VBox_ostypes_h
19
20#include <iprt/cdefs.h>
21
22__BEGIN_DECLS
23
24/**
25 * Global list of guest operating system types. They are grouped
26 * into families. A family identifer is always has mod 0x10000 == 0.
27 * New entries can be added, however other components might depend
28 * on the values (e.g. the Qt GUI) so if possible, the values should
29 * stay the same.
30 *
31 * @todo This typedef crashes with a core Mac OS X typedef, please rename it.
32 */
33typedef enum
34{
35 OSTypeUnknown = 0,
36 OSTypeDOS = 0x10000,
37 OSTypeWin31 = 0x15000,
38 OSTypeWin9x = 0x20000,
39 OSTypeWin95 = 0x21000,
40 OSTypeWin98 = 0x22000,
41 OSTypeWinMe = 0x23000,
42 OSTypeWinNT = 0x30000,
43 OSTypeWinNT4 = 0x31000,
44 OSTypeWin2k = 0x32000,
45 OSTypeWinXP = 0x33000,
46 OSTypeWin2k3 = 0x34000,
47 OSTypeWinVista = 0x35000,
48 OSTypeOS2 = 0x40000,
49 OSTypeOS2Warp3 = 0x41000,
50 OSTypeOS2Warp4 = 0x42000,
51 OSTypeOS2Warp45 = 0x43000,
52 OSTypeLinux = 0x50000,
53 OSTypeLinux22 = 0x51000,
54 OSTypeLinux24 = 0x52000,
55 OSTypeLinux26 = 0x53000,
56 OSTypeFreeBSD = 0x60000,
57 OSTypeOpenBSD = 0x61000,
58 OSTypeNetBSD = 0x62000,
59 OSTypeNetware = 0x70000,
60 OSTypeSolaris = 0x80000,
61 OSTypeL4 = 0x90000
62} OSType, VBOXOSTYPE;
63
64__END_DECLS
65
66#endif
67
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