VirtualBox

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

Last change on this file since 16080 was 16031, checked in by vboxsync, 16 years ago

Generic SMC device support

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.7 KB
Line 
1/* $Id: Builtins.h 16031 2009-01-19 07:03:00Z 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
27__BEGIN_DECLS
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
34extern const PDMDEVREG g_DevicePCI;
35extern const PDMDEVREG g_DevicePcArch;
36extern const PDMDEVREG g_DevicePcBios;
37extern const PDMDEVREG g_DevicePS2KeyboardMouse;
38extern const PDMDEVREG g_DeviceI8254;
39extern const PDMDEVREG g_DeviceI8259;
40#ifdef VBOX_WITH_HPET
41extern const PDMDEVREG g_DeviceHPET;
42#endif
43extern const PDMDEVREG g_DeviceMC146818;
44extern const PDMDEVREG g_DevicePIIX3IDE;
45extern const PDMDEVREG g_DeviceFloppyController;
46extern const PDMDEVREG g_DeviceVga;
47extern const PDMDEVREG g_DeviceVMMDev;
48extern const PDMDEVREG g_DevicePCNet;
49#ifdef VBOX_WITH_E1000
50extern const PDMDEVREG g_DeviceE1000;
51#endif
52#ifdef VBOX_WITH_INIP
53extern const PDMDEVREG g_DeviceINIP;
54#endif
55extern const PDMDEVREG g_DeviceICHAC97;
56extern const PDMDEVREG g_DeviceSB16;
57extern const PDMDEVREG g_DeviceAudioSniffer;
58extern const PDMDEVREG g_DeviceOHCI;
59extern const PDMDEVREG g_DeviceEHCI;
60extern const PDMDEVREG g_DeviceACPI;
61extern const PDMDEVREG g_DeviceDMA;
62extern const PDMDEVREG g_DeviceFloppyController;
63extern const PDMDEVREG g_DeviceSerialPort;
64extern const PDMDEVREG g_DeviceParallelPort;
65#ifdef VBOX_WITH_AHCI
66extern const PDMDEVREG g_DeviceAHCI;
67#endif
68#ifdef VBOX_WITH_BUSLOGIC
69extern const PDMDEVREG g_DeviceBusLogic;
70#endif
71extern const PDMDEVREG g_DevicePCIBridge;
72#ifdef VBOX_WITH_LSILOGIC
73extern const PDMDEVREG g_DeviceLsiLogicSCSI;
74#endif
75#ifdef VBOX_WITH_SMC
76extern const PDMDEVREG g_DeviceSMC;
77#endif
78
79extern const PDMDRVREG g_DrvMouseQueue;
80extern const PDMDRVREG g_DrvKeyboardQueue;
81extern const PDMDRVREG g_DrvBlock;
82extern const PDMDRVREG g_DrvVBoxHDD;
83extern const PDMDRVREG g_DrvVD;
84extern const PDMDRVREG g_DrvHostDVD;
85extern const PDMDRVREG g_DrvHostFloppy;
86extern const PDMDRVREG g_DrvMediaISO;
87extern const PDMDRVREG g_DrvRawImage;
88extern const PDMDRVREG g_DrvISCSI;
89extern const PDMDRVREG g_DrvISCSITransportTcp;
90extern const PDMDRVREG g_DrvHostInterface;
91extern const PDMDRVREG g_DrvIntNet;
92extern const PDMDRVREG g_DrvNAT;
93extern const PDMDRVREG g_DrvNetSniffer;
94extern const PDMDRVREG g_DrvAUDIO;
95extern const PDMDRVREG g_DrvACPI;
96extern const PDMDRVREG g_DrvVUSBRootHub;
97extern const PDMDRVREG g_DrvChar;
98extern const PDMDRVREG g_DrvNamedPipe;
99extern const PDMDRVREG g_DrvHostParallel;
100extern const PDMDRVREG g_DrvHostSerial;
101
102#ifdef VBOX_WITH_USB
103extern const PDMUSBREG g_UsbDevProxy;
104#endif
105
106#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
107extern const PDMDRVREG g_DrvRawImageAsync;
108extern const PDMDRVREG g_DrvTransportAsync;
109#endif
110
111#ifdef VBOX_WITH_SCSI
112extern const PDMDRVREG g_DrvSCSI;
113#if defined(RT_OS_LINUX)
114extern const PDMDRVREG g_DrvSCSIHost;
115#endif
116#endif
117
118#ifdef VBOX_WITH_FAULT_INJECTION
119extern const PDMDRVREG g_DrvFaultInject;
120#endif
121
122__END_DECLS
123
124#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