1 | /* $Id: VBoxDD2.h 76565 2019-01-01 04:23:20Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Built-in drivers & devices part 2 header.
|
---|
4 | *
|
---|
5 | * These drivers and devices are in separate modules because of LGPL.
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2006-2019 Oracle Corporation
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | * available from http://www.virtualbox.org. This file is free software;
|
---|
13 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | * General Public License (GPL) as published by the Free Software
|
---|
15 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | */
|
---|
19 |
|
---|
20 | #ifndef VBOX_INCLUDED_SRC_build_VBoxDD2_h
|
---|
21 | #define VBOX_INCLUDED_SRC_build_VBoxDD2_h
|
---|
22 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
23 | # pragma once
|
---|
24 | #endif
|
---|
25 |
|
---|
26 | #include <VBox/vmm/pdm.h>
|
---|
27 |
|
---|
28 | RT_C_DECLS_BEGIN
|
---|
29 |
|
---|
30 | #ifdef IN_VBOXDD2
|
---|
31 | extern DECLEXPORT(const unsigned char) g_abPcBiosBinary386[];
|
---|
32 | extern DECLEXPORT(const unsigned) g_cbPcBiosBinary386;
|
---|
33 | extern DECLEXPORT(const unsigned char) g_abPcBiosBinary286[];
|
---|
34 | extern DECLEXPORT(const unsigned) g_cbPcBiosBinary286;
|
---|
35 | extern DECLEXPORT(const unsigned char) g_abPcBiosBinary8086[];
|
---|
36 | extern DECLEXPORT(const unsigned) g_cbPcBiosBinary8086;
|
---|
37 | extern DECLEXPORT(const unsigned char) g_abVgaBiosBinary386[];
|
---|
38 | extern DECLEXPORT(const unsigned) g_cbVgaBiosBinary386;
|
---|
39 | extern DECLEXPORT(const unsigned char) g_abVgaBiosBinary286[];
|
---|
40 | extern DECLEXPORT(const unsigned) g_cbVgaBiosBinary286;
|
---|
41 | extern DECLEXPORT(const unsigned char) g_abVgaBiosBinary8086[];
|
---|
42 | extern DECLEXPORT(const unsigned) g_cbVgaBiosBinary8086;
|
---|
43 | # ifdef VBOX_WITH_PXE_ROM
|
---|
44 | extern DECLEXPORT(const unsigned char) g_abNetBiosBinary[];
|
---|
45 | extern DECLEXPORT(const unsigned) g_cbNetBiosBinary;
|
---|
46 | # endif
|
---|
47 | #else /* !IN_VBOXDD2 */
|
---|
48 | extern DECLIMPORT(const unsigned char) g_abPcBiosBinary386[];
|
---|
49 | extern DECLIMPORT(const unsigned) g_cbPcBiosBinary386;
|
---|
50 | extern DECLIMPORT(const unsigned char) g_abPcBiosBinary286[];
|
---|
51 | extern DECLIMPORT(const unsigned) g_cbPcBiosBinary286;
|
---|
52 | extern DECLIMPORT(const unsigned char) g_abPcBiosBinary8086[];
|
---|
53 | extern DECLIMPORT(const unsigned) g_cbPcBiosBinary8086;
|
---|
54 | extern DECLIMPORT(const unsigned char) g_abVgaBiosBinary386[];
|
---|
55 | extern DECLIMPORT(const unsigned) g_cbVgaBiosBinary386;
|
---|
56 | extern DECLIMPORT(const unsigned char) g_abVgaBiosBinary286[];
|
---|
57 | extern DECLIMPORT(const unsigned) g_cbVgaBiosBinary286;
|
---|
58 | extern DECLIMPORT(const unsigned char) g_abVgaBiosBinary8086[];
|
---|
59 | extern DECLIMPORT(const unsigned) g_cbVgaBiosBinary8086;
|
---|
60 | # ifdef VBOX_WITH_PXE_ROM
|
---|
61 | extern DECLIMPORT(const unsigned char) g_abNetBiosBinary[];
|
---|
62 | extern DECLIMPORT(const unsigned) g_cbNetBiosBinary;
|
---|
63 | # endif
|
---|
64 | #endif /* !IN_VBOXDD2 */
|
---|
65 |
|
---|
66 | #ifndef VBOX_WITH_NEW_LPC_DEVICE
|
---|
67 | extern const PDMDEVREG g_DeviceLPC;
|
---|
68 | #endif
|
---|
69 |
|
---|
70 | RT_C_DECLS_END
|
---|
71 |
|
---|
72 | #endif /* !VBOX_INCLUDED_SRC_build_VBoxDD2_h */
|
---|
73 |
|
---|