1 | /* $Id: VBoxVMMDeps.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * link dependencies - drag all we want into the link!
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek 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 |
|
---|
18 |
|
---|
19 | /*******************************************************************************
|
---|
20 | * Header Files *
|
---|
21 | *******************************************************************************/
|
---|
22 | #include <VBox/pgm.h>
|
---|
23 | #include <VBox/pdm.h>
|
---|
24 | #include <VBox/vm.h>
|
---|
25 | #include <VBox/em.h>
|
---|
26 | #include <VBox/iom.h>
|
---|
27 | #include <VBox/dbgf.h>
|
---|
28 |
|
---|
29 | VMMR3DECL(int) VMMDoTest(PVM pVM);
|
---|
30 |
|
---|
31 | /** Just a dummy global structure containing a bunch of
|
---|
32 | * function pointers to code which is wanted in the link.
|
---|
33 | */
|
---|
34 | PFNRT g_apfnDeps[] =
|
---|
35 | {
|
---|
36 | (PFNRT)DBGFR3DisasInstrEx,
|
---|
37 | (PFNRT)DBGFR3LogModifyFlags,
|
---|
38 | (PFNRT)DBGFR3StackWalkEnd,
|
---|
39 | (PFNRT)DBGFR3SymbolByAddr,
|
---|
40 | (PFNRT)EMInterpretInstruction,
|
---|
41 | (PFNRT)IOMIOPortRead,
|
---|
42 | (PFNRT)PDMQueueInsert,
|
---|
43 | (PFNRT)PDMCritSectEnter,
|
---|
44 | (PFNRT)PGMInvalidatePage,
|
---|
45 | (PFNRT)VMR3Create,
|
---|
46 | (PFNRT)VMMDoTest,
|
---|
47 | NULL
|
---|
48 | };
|
---|