1 | /** @file
|
---|
2 | *
|
---|
3 | * Built-in drivers & devices (part 1) headers
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #ifndef __Builtins_h__
|
---|
23 | #define __Builtins_h__
|
---|
24 |
|
---|
25 | #include <VBox/pdm.h>
|
---|
26 |
|
---|
27 | __BEGIN_DECLS
|
---|
28 |
|
---|
29 | __BEGIN_DECLS
|
---|
30 | /** The default BIOS logo data. */
|
---|
31 | extern const unsigned char g_abPcDefBiosLogo[];
|
---|
32 | /** The size of the default BIOS logo data. */
|
---|
33 | extern const unsigned g_cbPcDefBiosLogo;
|
---|
34 | __END_DECLS
|
---|
35 |
|
---|
36 |
|
---|
37 | extern const PDMDEVREG g_DevicePCI;
|
---|
38 | extern const PDMDEVREG g_DevicePcArch;
|
---|
39 | extern const PDMDEVREG g_DevicePcBios;
|
---|
40 | extern const PDMDEVREG g_DevicePS2KeyboardMouse;
|
---|
41 | extern const PDMDEVREG g_DeviceI8254;
|
---|
42 | extern const PDMDEVREG g_DeviceI8259;
|
---|
43 | extern const PDMDEVREG g_DeviceMC146818;
|
---|
44 | extern const PDMDEVREG g_DevicePIIX3IDE;
|
---|
45 | extern const PDMDEVREG g_DeviceFloppyController;
|
---|
46 | extern const PDMDEVREG g_DeviceVga;
|
---|
47 | extern const PDMDEVREG g_DeviceVMMDev;
|
---|
48 | extern const PDMDEVREG g_DevicePCNet;
|
---|
49 | extern const PDMDEVREG g_DeviceNE2000;
|
---|
50 | extern const PDMDEVREG g_DeviceICHAC97;
|
---|
51 | extern const PDMDEVREG g_DeviceAudioSniffer;
|
---|
52 | extern const PDMDEVREG g_DeviceUSBBackend;
|
---|
53 | extern const PDMDEVREG g_DeviceOHCI;
|
---|
54 | extern const PDMDEVREG g_DeviceACPI;
|
---|
55 | extern const PDMDEVREG g_DeviceDMA;
|
---|
56 | extern const PDMDEVREG g_DeviceFloppyController;
|
---|
57 | extern const PDMDEVREG g_DeviceSerialPort;
|
---|
58 |
|
---|
59 | extern const PDMDRVREG g_DrvMouseQueue;
|
---|
60 | extern const PDMDRVREG g_DrvKeyboardQueue;
|
---|
61 | extern const PDMDRVREG g_DrvBlock;
|
---|
62 | extern const PDMDRVREG g_DrvVBoxHDD;
|
---|
63 | extern const PDMDRVREG g_DrvVmdkHDD;
|
---|
64 | extern const PDMDRVREG g_DrvHostDVD;
|
---|
65 | extern const PDMDRVREG g_DrvHostFloppy;
|
---|
66 | extern const PDMDRVREG g_DrvMediaISO;
|
---|
67 | extern const PDMDRVREG g_DrvRawImage;
|
---|
68 | extern const PDMDRVREG g_DrvISCSI;
|
---|
69 | extern const PDMDRVREG g_DrvISCSITransportTcp;
|
---|
70 | extern const PDMDRVREG g_DrvHostInterface;
|
---|
71 | extern const PDMDRVREG g_DrvIntNet;
|
---|
72 | extern const PDMDRVREG g_DrvNAT;
|
---|
73 | extern const PDMDRVREG g_DrvNetSniffer;
|
---|
74 | extern const PDMDRVREG g_DrvAUDIO;
|
---|
75 | extern const PDMDRVREG g_DrvACPI;
|
---|
76 | extern const PDMDRVREG g_DrvVUSBRootHub;
|
---|
77 |
|
---|
78 | __END_DECLS
|
---|
79 |
|
---|
80 | #endif
|
---|