Changeset 13146 in vbox for trunk/include/VBox/pgm.h
- Timestamp:
- Oct 9, 2008 10:58:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pgm.h
r13144 r13146 423 423 VMMDECL(void) PGMPhysWrite(PVM pVM, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite); 424 424 #ifndef IN_GC /* Only ring 0 & 3. */ 425 VMMDECL(int) PGMPhys ReadGCPhys(PVM pVM, void *pvDst, RTGCPHYS GCPhysSrc, size_t cb);426 VMMDECL(int) PGMPhys WriteGCPhys(PVM pVM, RTGCPHYS GCPhysDst, const void *pvSrc, size_t cb);425 VMMDECL(int) PGMPhysSimpleReadGCPhys(PVM pVM, void *pvDst, RTGCPHYS GCPhysSrc, size_t cb); 426 VMMDECL(int) PGMPhysSimpleWriteGCPhys(PVM pVM, RTGCPHYS GCPhysDst, const void *pvSrc, size_t cb); 427 427 VMMDECL(int) PGMPhysSimpleReadGCPtr(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb); 428 428 VMMDECL(int) PGMPhysSimpleWriteGCPtr(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb); 429 VMMDECL(int) PGMPhysReadGCPtr Safe(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb);430 VMMDECL(int) PGMPhysWriteGCPtr Safe(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);429 VMMDECL(int) PGMPhysReadGCPtr(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb); 430 VMMDECL(int) PGMPhysWriteGCPtr(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb); 431 431 VMMDECL(int) PGMPhysSimpleDirtyWriteGCPtr(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb); 432 432 VMMDECL(int) PGMInvalidatePage(PVM pVM, RTGCPTR GCPtrPage);
Note:
See TracChangeset
for help on using the changeset viewer.