- Timestamp:
- Feb 6, 2007 4:22:57 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/DBGFSym.cpp
r450 r670 25 25 *******************************************************************************/ 26 26 #define LOG_GROUP LOG_GROUP_DBGF 27 #if defined(__WIN 32__) && defined(DEBUG_bird) // enabled this is you want to debug win32 guests or the hypervisor.27 #if defined(__WIN__) && defined(DEBUG_bird) // enabled this is you want to debug win32 guests or the hypervisor. 28 28 # include <Windows.h> 29 29 # define _IMAGEHLP64 … … 56 56 *******************************************************************************/ 57 57 #ifdef HAVE_DBGHELP 58 static DECLCALLBACK(int) dbgfR3EnumModules(PVM pVM, const char *pszFilename, const char *pszName, RTUINTPTR ImageBase, unsignedcbImage, bool fGC);58 static DECLCALLBACK(int) dbgfR3EnumModules(PVM pVM, const char *pszFilename, const char *pszName, RTUINTPTR ImageBase, size_t cbImage, bool fGC); 59 59 static int win32Error(PVM pVM); 60 60 #endif … … 379 379 * @param pvArg User argument. 380 380 */ 381 static DECLCALLBACK(int) dbgfR3EnumModules(PVM pVM, const char *pszFilename, const char *pszName, RTUINTPTR ImageBase, unsignedcbImage, bool fGC)381 static DECLCALLBACK(int) dbgfR3EnumModules(PVM pVM, const char *pszFilename, const char *pszName, RTUINTPTR ImageBase, size_t cbImage, bool fGC) 382 382 { 383 383 if (fGC)
Note:
See TracChangeset
for help on using the changeset viewer.