VirtualBox

source: vbox/trunk/src/VBox/VMM/VBoxVMMDeps.cpp@ 5680

Last change on this file since 5680 was 5680, checked in by vboxsync, 17 years ago

Trying to fix the double linking of the DBGC code (VBoxDBG and VBoxVMM), by making sure it gets into VBoxVMM when it is supposed to.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1/* $Id: VBoxVMMDeps.cpp 5680 2007-11-11 09:40:50Z vboxsync $ */
2/** @file
3 * VBoxVMM 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#include <VBox/dbg.h>
29
30VMMR3DECL(int) VMMDoTest(PVM pVM);
31
32/** Just a dummy global structure containing a bunch of
33 * function pointers to code which is wanted in the link.
34 */
35PFNRT g_apfnDeps[] =
36{
37 (PFNRT)DBGFR3DisasInstrEx,
38 (PFNRT)DBGFR3LogModifyFlags,
39 (PFNRT)DBGFR3StackWalkEnd,
40 (PFNRT)DBGFR3SymbolByAddr,
41 (PFNRT)EMInterpretInstruction,
42 (PFNRT)IOMIOPortRead,
43 (PFNRT)PDMQueueInsert,
44 (PFNRT)PDMCritSectEnter,
45 (PFNRT)PGMInvalidatePage,
46 (PFNRT)PGMR3DbgHCPtr2GCPhys,
47 (PFNRT)VMR3Create,
48 (PFNRT)VMMDoTest,
49#ifdef VBOX_WITH_DEBUGGER
50 (PFNRT)DBGCCreate,
51#endif
52 NULL
53};
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette