1 | /* $Id: VBoxVMMDeps.cpp 35410 2011-01-05 17:21:11Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxVMM link dependencies - drag all we want into the link!
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 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 |
|
---|
19 | /*******************************************************************************
|
---|
20 | * Header Files *
|
---|
21 | *******************************************************************************/
|
---|
22 | #include <VBox/vmm/pgm.h>
|
---|
23 | #include <VBox/vmm/pdmapi.h>
|
---|
24 | #include <VBox/vmm/pdmcritsect.h>
|
---|
25 | #include <VBox/vmm/pdmqueue.h>
|
---|
26 | #include <VBox/vmm/vm.h>
|
---|
27 | #include <VBox/vmm/em.h>
|
---|
28 | #include <VBox/vmm/iom.h>
|
---|
29 | #include <VBox/vmm/dbgf.h>
|
---|
30 | #include <VBox/dbg.h>
|
---|
31 | #include <VBox/vmm/ftm.h>
|
---|
32 |
|
---|
33 | VMMR3DECL(int) VMMDoTest(PVM pVM);
|
---|
34 |
|
---|
35 | /** Just a dummy global structure containing a bunch of
|
---|
36 | * function pointers to code which is wanted in the link.
|
---|
37 | */
|
---|
38 | PFNRT g_apfnDeps[] =
|
---|
39 | {
|
---|
40 | (PFNRT)DBGFR3DisasInstrEx,
|
---|
41 | (PFNRT)DBGFR3LogModifyFlags,
|
---|
42 | (PFNRT)DBGFR3StackWalkEnd,
|
---|
43 | (PFNRT)DBGFR3AsSymbolByAddr,
|
---|
44 | (PFNRT)DBGFR3CpuGetMode,
|
---|
45 | (PFNRT)DBGFR3CoreWrite,
|
---|
46 | (PFNRT)DBGFR3MemScan,
|
---|
47 | (PFNRT)DBGFR3RegCpuQueryU8,
|
---|
48 | (PFNRT)EMInterpretInstruction,
|
---|
49 | (PFNRT)IOMIOPortRead,
|
---|
50 | (PFNRT)PDMQueueInsert,
|
---|
51 | (PFNRT)PDMCritSectEnter,
|
---|
52 | (PFNRT)PGMInvalidatePage,
|
---|
53 | (PFNRT)PGMR3DbgR3Ptr2GCPhys,
|
---|
54 | (PFNRT)VMR3Create,
|
---|
55 | (PFNRT)VMMDoTest,
|
---|
56 | (PFNRT)FTMR3PowerOn,
|
---|
57 | #ifdef VBOX_WITH_DEBUGGER
|
---|
58 | (PFNRT)DBGCCreate,
|
---|
59 | #endif
|
---|
60 | #ifdef VBOX_WITH_PAGE_SHARING
|
---|
61 | (PFNRT)PGMR3SharedModuleRegister,
|
---|
62 | #endif
|
---|
63 | NULL
|
---|
64 | };
|
---|