Changeset 61681 in vbox for trunk/src/VBox/Debugger/testcase
- Timestamp:
- Jun 13, 2016 3:06:29 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108038
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/testcase/tstDBGCStubs.cpp
r59229 r61681 342 342 { 343 343 } 344 VMMR3DECL(int) DBGFR3TypeRegister( PUVM pUVM, uint32_t cTypes, PCDBGFTYPEREG paTypes) 345 { 346 return VERR_INTERNAL_ERROR; 347 } 348 VMMR3DECL(int) DBGFR3TypeDeregister(PUVM pUVM, const char *pszType) 349 { 350 return VERR_INTERNAL_ERROR; 351 } 352 VMMR3DECL(int) DBGFR3TypeQueryReg( PUVM pUVM, const char *pszType, PCDBGFTYPEREG *ppTypeReg) 353 { 354 return VERR_INTERNAL_ERROR; 355 } 356 VMMR3DECL(int) DBGFR3TypeQuerySize( PUVM pUVM, const char *pszType, size_t *pcbType) 357 { 358 return VERR_INTERNAL_ERROR; 359 } 360 VMMR3DECL(int) DBGFR3TypeSetSize( PUVM pUVM, const char *pszType, size_t cbType) 361 { 362 return VERR_INTERNAL_ERROR; 363 } 364 VMMR3DECL(int) DBGFR3TypeDumpEx( PUVM pUVM, const char *pszType, uint32_t fFlags, 365 uint32_t cLvlMax, PFNDBGFR3TYPEDUMP pfnDump, void *pvUser) 366 { 367 return VERR_INTERNAL_ERROR; 368 } 369 VMMR3DECL(int) DBGFR3TypeQueryValByType(PUVM pUVM, PCDBGFADDRESS pAddress, const char *pszType, 370 PDBGFTYPEVAL *ppVal) 371 { 372 return VERR_INTERNAL_ERROR; 373 } 374 VMMR3DECL(void) DBGFR3TypeValFree(PDBGFTYPEVAL pVal) 375 { 376 } 377 VMMR3DECL(int) DBGFR3TypeValDumpEx(PUVM pUVM, PCDBGFADDRESS pAddress, const char *pszType, uint32_t fFlags, 378 uint32_t cLvlMax, FNDBGFR3TYPEVALDUMP pfnDump, void *pvUser) 379 { 380 return VERR_INTERNAL_ERROR; 381 } 344 382 345 383 #include <VBox/vmm/cfgm.h>
Note:
See TracChangeset
for help on using the changeset viewer.