Changeset 31948 in vbox for trunk/include/VBox
- Timestamp:
- Aug 25, 2010 8:51:40 AM (14 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dbgf.h
r31491 r31948 413 413 414 414 415 416 /** Pointer to a info helper callback structure. */417 typedef struct DBGFINFOHLP *PDBGFINFOHLP;418 /** Pointer to a const info helper callback structure. */419 typedef const struct DBGFINFOHLP *PCDBGFINFOHLP;420 415 421 416 /** -
trunk/include/VBox/pgm.h
r31938 r31948 534 534 VMMDECL(int) PGMHandlerVirtualDeregister(PVM pVM, RTGCPTR GCPtr); 535 535 VMMR3DECL(int) PGMR3PoolGrow(PVM pVM); 536 #ifdef ___VBox_dbgf_h /** @todo fix this! */537 VMMR3DECL(int) PGMR3DumpHierarchyHC(PVM pVM, uint64_t cr3, uint64_t cr4, bool fLongMode, unsigned cMaxDepth, PCDBGFINFOHLP pHlp);538 #endif539 VMMR3DECL(int) PGMR3DumpHierarchyGC(PVM pVM, uint64_t cr3, uint64_t cr4, RTGCPHYS PhysSearch);540 536 541 537 VMMR3DECL(int) PGMR3PhysTlbGCPhys2Ptr(PVM pVM, RTGCPHYS GCPhys, bool fWritable, void **ppv); … … 568 564 VMMR3DECL(int) PGMR3DbgScanPhysical(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cbRange, RTGCPHYS GCPhysAlign, const uint8_t *pabNeedle, size_t cbNeedle, PRTGCPHYS pGCPhysHit); 569 565 VMMR3DECL(int) PGMR3DbgScanVirtual(PVM pVM, PVMCPU pVCpu, RTGCPTR GCPtr, RTGCPTR cbRange, RTGCPTR GCPtrAlign, const uint8_t *pabNeedle, size_t cbNeedle, PRTGCUINTPTR pGCPhysHit); 566 VMMR3DECL(int) PGMR3DumpHierarchyHC(PVM pVM, uint64_t cr3, uint64_t cr4, bool fLongMode, unsigned cMaxDepth, PCDBGFINFOHLP pHlp); 567 VMMR3DECL(int) PGMR3DumpHierarchyGC(PVM pVM, uint64_t cr3, uint64_t cr4, RTGCPHYS PhysSearch); 570 568 571 569 -
trunk/include/VBox/types.h
r31695 r31948 855 855 856 856 857 /** Pointer to a info helper callback structure. */ 858 typedef struct DBGFINFOHLP *PDBGFINFOHLP; 859 /** Pointer to a const info helper callback structure. */ 860 typedef const struct DBGFINFOHLP *PCDBGFINFOHLP; 861 862 857 863 /** Configuration manager tree node - A key. */ 858 864 typedef struct CFGMNODE *PCFGMNODE; … … 860 866 /** Configuration manager tree leaf - A value. */ 861 867 typedef struct CFGMLEAF *PCFGMLEAF; 868 862 869 863 870 /**
Note:
See TracChangeset
for help on using the changeset viewer.