diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2014-03-26 19:21:20 +0000 |
---|---|---|
committer | <> | 2014-05-08 15:03:54 +0000 |
commit | fb123f93f9f5ce42c8e5785d2f8e0edaf951740e (patch) | |
tree | c2103d76aec5f1f10892cd1d3a38e24f665ae5db /src/VBox/Devices/build/VBoxDD.h | |
parent | 58ed4748338f9466599adfc8a9171280ed99e23f (diff) | |
download | VirtualBox-master.tar.gz |
Imported from /home/lorry/working-area/delta_VirtualBox/VirtualBox-4.3.10.tar.bz2.HEADVirtualBox-4.3.10master
Diffstat (limited to 'src/VBox/Devices/build/VBoxDD.h')
-rw-r--r-- | src/VBox/Devices/build/VBoxDD.h | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/src/VBox/Devices/build/VBoxDD.h b/src/VBox/Devices/build/VBoxDD.h index a7215094..d029a5ad 100644 --- a/src/VBox/Devices/build/VBoxDD.h +++ b/src/VBox/Devices/build/VBoxDD.h @@ -4,7 +4,7 @@ */ /* - * Copyright (C) 2006-2011 Oracle Corporation + * Copyright (C) 2006-2013 Oracle Corporation * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; @@ -26,12 +26,6 @@ RT_C_DECLS_BEGIN extern const unsigned char g_abVgaDefBiosLogo[]; /** The size of the default BIOS logo data. */ extern const unsigned g_cbVgaDefBiosLogo; -#ifdef VBOX_WITH_EFI -/** The EFI thunk binary. */ -extern const unsigned char g_abEfiThunkBinary[]; -/** The size of the EFI thunk binary. */ -extern const unsigned g_cbEfiThunkBinary; -#endif extern const PDMDEVREG g_DevicePCI; @@ -42,6 +36,7 @@ extern const PDMDEVREG g_DevicePS2KeyboardMouse; extern const PDMDEVREG g_DeviceI8254; extern const PDMDEVREG g_DeviceI8259; extern const PDMDEVREG g_DeviceHPET; +extern const PDMDEVREG g_DeviceSmc; extern const PDMDEVREG g_DeviceMC146818; extern const PDMDEVREG g_DevicePIIX3IDE; extern const PDMDEVREG g_DeviceFloppyController; @@ -118,6 +113,9 @@ extern const PDMDRVREG g_DrvAUDIO; extern const PDMDRVREG g_DrvACPI; extern const PDMDRVREG g_DrvAcpiCpu; extern const PDMDRVREG g_DrvVUSBRootHub; +#ifdef VBOX_WITH_USB_VIDEO_IMPL +extern const PDMDRVREG g_DrvHostWebcam; +#endif extern const PDMDRVREG g_DrvChar; extern const PDMDRVREG g_DrvNamedPipe; extern const PDMDRVREG g_DrvRawFile; @@ -139,6 +137,9 @@ extern const PDMUSBREG g_UsbHid; extern const PDMUSBREG g_UsbHidKbd; extern const PDMUSBREG g_UsbHidMou; #endif +#ifdef VBOX_WITH_USB_VIDEO_IMPL +extern const PDMUSBREG g_DevWebcam; +#endif #ifdef VBOX_WITH_SCSI extern const PDMDRVREG g_DrvSCSI; @@ -147,6 +148,14 @@ extern const PDMDRVREG g_DrvSCSIHost; # endif #endif + +/* VBoxAcpi.cpp */ +int acpiPrepareDsdt(PPDMDEVINS pDevIns, void **ppvPtr, size_t *pcbDsdt); +int acpiCleanupDsdt(PPDMDEVINS pDevIns, void *pvPtr); +int acpiPrepareSsdt(PPDMDEVINS pDevIns, void **ppvPtr, size_t *pcbSsdt); +int acpiCleanupSsdt(PPDMDEVINS pDevIns, void *pvPtr); + RT_C_DECLS_END #endif + |