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