VirtualBox

source: vbox/trunk/src/VBox/Devices/build/VBoxDD.h@ 37490

Last change on this file since 37490 was 37198, checked in by vboxsync, 13 years ago

Devices/Network/DrvUDPTunnel: new network transport which sends ethernet frames encapsulated in UDP. Contributed by Christophe Devriese, and much cleaned up.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.3 KB
Line 
1/* $Id: VBoxDD.h 37198 2011-05-24 15:10:40Z vboxsync $ */
2/** @file
3 * Built-in drivers & devices (part 1) header.
4 */
5
6/*
7 * Copyright (C) 2006-2011 Oracle Corporation
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
18#ifndef ___build_VBoxDD_h
19#define ___build_VBoxDD_h
20
21#include <VBox/vmm/pdm.h>
22
23RT_C_DECLS_BEGIN
24
25/** The default BIOS logo data. */
26extern const unsigned char g_abVgaDefBiosLogo[];
27/** The size of the default BIOS logo data. */
28extern const unsigned g_cbVgaDefBiosLogo;
29#ifdef VBOX_WITH_EFI
30/** The EFI thunk binary. */
31extern const unsigned char g_abEfiThunkBinary[];
32/** The size of the EFI thunk binary. */
33extern const unsigned g_cbEfiThunkBinary;
34#endif
35
36
37extern const PDMDEVREG g_DevicePCI;
38extern const PDMDEVREG g_DevicePciIch9;
39extern const PDMDEVREG g_DevicePcArch;
40extern const PDMDEVREG g_DevicePcBios;
41extern const PDMDEVREG g_DevicePS2KeyboardMouse;
42extern const PDMDEVREG g_DeviceI8254;
43extern const PDMDEVREG g_DeviceI8259;
44extern const PDMDEVREG g_DeviceHPET;
45extern const PDMDEVREG g_DeviceMC146818;
46extern const PDMDEVREG g_DevicePIIX3IDE;
47extern const PDMDEVREG g_DeviceFloppyController;
48extern const PDMDEVREG g_DeviceVga;
49extern const PDMDEVREG g_DeviceVMMDev;
50extern const PDMDEVREG g_DevicePCNet;
51#ifdef VBOX_WITH_E1000
52extern const PDMDEVREG g_DeviceE1000;
53#endif
54#ifdef VBOX_WITH_VIRTIO
55extern const PDMDEVREG g_DeviceVirtioNet;
56#endif
57#ifdef VBOX_WITH_INIP
58extern const PDMDEVREG g_DeviceINIP;
59#endif
60extern const PDMDEVREG g_DeviceICHAC97;
61extern const PDMDEVREG g_DeviceSB16;
62extern const PDMDEVREG g_DeviceICH6_HDA;
63extern const PDMDEVREG g_DeviceAudioSniffer;
64extern const PDMDEVREG g_DeviceOHCI;
65extern const PDMDEVREG g_DeviceEHCI;
66extern const PDMDEVREG g_DeviceACPI;
67extern const PDMDEVREG g_DeviceDMA;
68extern const PDMDEVREG g_DeviceFloppyController;
69extern const PDMDEVREG g_DeviceSerialPort;
70extern const PDMDEVREG g_DeviceParallelPort;
71#ifdef VBOX_WITH_AHCI
72extern const PDMDEVREG g_DeviceAHCI;
73#endif
74#ifdef VBOX_WITH_BUSLOGIC
75extern const PDMDEVREG g_DeviceBusLogic;
76#endif
77extern const PDMDEVREG g_DevicePCIBridge;
78extern const PDMDEVREG g_DevicePciIch9Bridge;
79#ifdef VBOX_WITH_LSILOGIC
80extern const PDMDEVREG g_DeviceLsiLogicSCSI;
81extern const PDMDEVREG g_DeviceLsiLogicSAS;
82#endif
83#ifdef VBOX_WITH_EFI
84extern const PDMDEVREG g_DeviceEFI;
85#endif
86#ifdef VBOX_WITH_PCI_PASSTHROUGH
87extern const PDMDEVREG g_DevicePciRaw;
88#endif
89
90extern const PDMDRVREG g_DrvMouseQueue;
91extern const PDMDRVREG g_DrvKeyboardQueue;
92extern const PDMDRVREG g_DrvBlock;
93extern const PDMDRVREG g_DrvVBoxHDD;
94extern const PDMDRVREG g_DrvVD;
95extern const PDMDRVREG g_DrvHostDVD;
96extern const PDMDRVREG g_DrvHostFloppy;
97extern const PDMDRVREG g_DrvMediaISO;
98extern const PDMDRVREG g_DrvRawImage;
99extern const PDMDRVREG g_DrvISCSI;
100extern const PDMDRVREG g_DrvISCSITransportTcp;
101#if defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD)
102extern const PDMDRVREG g_DrvHostInterface;
103#endif
104#ifdef VBOX_WITH_UDPTUNNEL
105extern const PDMDRVREG g_DrvUDPTunnel;
106#endif
107#ifdef VBOX_WITH_VDE
108extern const PDMDRVREG g_DrvVDE;
109#endif
110extern const PDMDRVREG g_DrvIntNet;
111extern const PDMDRVREG g_DrvDedicatedNic;
112extern const PDMDRVREG g_DrvNAT;
113extern const PDMDRVREG g_DrvNetSniffer;
114extern const PDMDRVREG g_DrvAUDIO;
115extern const PDMDRVREG g_DrvACPI;
116extern const PDMDRVREG g_DrvAcpiCpu;
117extern const PDMDRVREG g_DrvVUSBRootHub;
118extern const PDMDRVREG g_DrvChar;
119extern const PDMDRVREG g_DrvNamedPipe;
120extern const PDMDRVREG g_DrvRawFile;
121extern const PDMDRVREG g_DrvHostParallel;
122extern const PDMDRVREG g_DrvHostSerial;
123#ifdef VBOX_WITH_DRV_DISK_INTEGRITY
124extern const PDMDRVREG g_DrvDiskIntegrity;
125#endif
126
127#ifdef VBOX_WITH_USB
128extern const PDMUSBREG g_UsbDevProxy;
129extern const PDMUSBREG g_UsbMsd;
130#endif
131#ifdef VBOX_WITH_VUSB
132extern const PDMUSBREG g_UsbHid;
133extern const PDMUSBREG g_UsbHidKbd;
134extern const PDMUSBREG g_UsbHidMou;
135#endif
136
137#ifdef VBOX_WITH_SCSI
138extern const PDMDRVREG g_DrvSCSI;
139# if defined(RT_OS_LINUX)
140extern const PDMDRVREG g_DrvSCSIHost;
141# endif
142#endif
143
144RT_C_DECLS_END
145
146#endif
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