VirtualBox

source: vbox/trunk/src/VBox/Devices/Builtins.h@ 21205

Last change on this file since 21205 was 20374, checked in by vboxsync, 15 years ago

*: s/RT_\(BEGIN|END\)_DECLS/RT_C_DECLS_\1/g

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.8 KB
Line 
1/* $Id: Builtins.h 20374 2009-06-08 00:43:21Z vboxsync $ */
2/** @file
3 * Built-in drivers & devices (part 1) header.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#ifndef ___Builtins_h
23#define ___Builtins_h
24
25#include <VBox/pdm.h>
26
27RT_C_DECLS_BEGIN
28
29/** The default BIOS logo data. */
30extern const unsigned char g_abVgaDefBiosLogo[];
31/** The size of the default BIOS logo data. */
32extern const unsigned g_cbVgaDefBiosLogo;
33#ifdef VBOX_WITH_EFI
34/** The EFI thunk binary. */
35extern const unsigned char g_abEfiThunkBinary[];
36/** The size of the EFI thunk binary. */
37extern const unsigned g_cbEfiThunkBinary;
38#endif
39
40
41extern const PDMDEVREG g_DevicePCI;
42extern const PDMDEVREG g_DevicePcArch;
43extern const PDMDEVREG g_DevicePcBios;
44extern const PDMDEVREG g_DevicePS2KeyboardMouse;
45extern const PDMDEVREG g_DeviceI8254;
46extern const PDMDEVREG g_DeviceI8259;
47#ifdef VBOX_WITH_HPET
48extern const PDMDEVREG g_DeviceHPET;
49#endif
50extern const PDMDEVREG g_DeviceMC146818;
51extern const PDMDEVREG g_DevicePIIX3IDE;
52extern const PDMDEVREG g_DeviceFloppyController;
53extern const PDMDEVREG g_DeviceVga;
54extern const PDMDEVREG g_DeviceVMMDev;
55extern const PDMDEVREG g_DevicePCNet;
56#ifdef VBOX_WITH_E1000
57extern const PDMDEVREG g_DeviceE1000;
58#endif
59#ifdef VBOX_WITH_INIP
60extern const PDMDEVREG g_DeviceINIP;
61#endif
62extern const PDMDEVREG g_DeviceICHAC97;
63extern const PDMDEVREG g_DeviceSB16;
64extern const PDMDEVREG g_DeviceAudioSniffer;
65extern const PDMDEVREG g_DeviceOHCI;
66extern const PDMDEVREG g_DeviceEHCI;
67extern const PDMDEVREG g_DeviceACPI;
68extern const PDMDEVREG g_DeviceDMA;
69extern const PDMDEVREG g_DeviceFloppyController;
70extern const PDMDEVREG g_DeviceSerialPort;
71extern const PDMDEVREG g_DeviceParallelPort;
72#ifdef VBOX_WITH_AHCI
73extern const PDMDEVREG g_DeviceAHCI;
74#endif
75#ifdef VBOX_WITH_BUSLOGIC
76extern const PDMDEVREG g_DeviceBusLogic;
77#endif
78extern const PDMDEVREG g_DevicePCIBridge;
79#ifdef VBOX_WITH_LSILOGIC
80extern const PDMDEVREG g_DeviceLsiLogicSCSI;
81#endif
82#ifdef VBOX_WITH_SMC
83extern const PDMDEVREG g_DeviceSMC;
84#endif
85#ifdef VBOX_WITH_LPC
86extern const PDMDEVREG g_DeviceLPC;
87#endif
88#ifdef VBOX_WITH_EFI
89extern const PDMDEVREG g_DeviceEFI;
90#endif
91
92extern const PDMDRVREG g_DrvMouseQueue;
93extern const PDMDRVREG g_DrvKeyboardQueue;
94extern const PDMDRVREG g_DrvBlock;
95extern const PDMDRVREG g_DrvVBoxHDD;
96extern const PDMDRVREG g_DrvVD;
97extern const PDMDRVREG g_DrvHostDVD;
98extern const PDMDRVREG g_DrvHostFloppy;
99extern const PDMDRVREG g_DrvMediaISO;
100extern const PDMDRVREG g_DrvRawImage;
101extern const PDMDRVREG g_DrvISCSI;
102extern const PDMDRVREG g_DrvISCSITransportTcp;
103#ifdef RT_OS_LINUX
104extern const PDMDRVREG g_DrvHostInterface;
105#endif
106extern const PDMDRVREG g_DrvIntNet;
107extern const PDMDRVREG g_DrvNAT;
108extern const PDMDRVREG g_DrvNetSniffer;
109extern const PDMDRVREG g_DrvAUDIO;
110extern const PDMDRVREG g_DrvACPI;
111extern const PDMDRVREG g_DrvVUSBRootHub;
112extern const PDMDRVREG g_DrvChar;
113extern const PDMDRVREG g_DrvNamedPipe;
114extern const PDMDRVREG g_DrvRawFile;
115extern const PDMDRVREG g_DrvHostParallel;
116extern const PDMDRVREG g_DrvHostSerial;
117
118#ifdef VBOX_WITH_USB
119extern const PDMUSBREG g_UsbDevProxy;
120#endif
121
122#ifdef VBOX_WITH_SCSI
123extern const PDMDRVREG g_DrvSCSI;
124#if defined(RT_OS_LINUX)
125extern const PDMDRVREG g_DrvSCSIHost;
126#endif
127#endif
128
129RT_C_DECLS_END
130
131#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use