- Timestamp:
- Sep 14, 2022 12:26:44 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllGst.h
r96739 r96740 31 31 *********************************************************************************************************************************/ 32 32 RT_C_DECLS_BEGIN 33 /** @todo Do we really need any of these forward declarations? */ 33 34 #if PGM_GST_TYPE == PGM_TYPE_32BIT \ 34 35 || PGM_GST_TYPE == PGM_TYPE_PAE \ … … 36 37 DECLINLINE(int) PGM_GST_NAME(Walk)(PVMCPUCC pVCpu, RTGCPTR GCPtr, PPGMPTWALK pWalk, PGSTPTWALK pGstWalk); 37 38 #endif 39 PGM_GST_DECL(int, Enter)(PVMCPUCC pVCpu, RTGCPHYS GCPhysCR3); 38 40 PGM_GST_DECL(int, GetPage)(PVMCPUCC pVCpu, RTGCPTR GCPtr, PPGMPTWALK pWalk); 39 41 PGM_GST_DECL(int, ModifyPage)(PVMCPUCC pVCpu, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask); 42 PGM_GST_DECL(int, Exit)(PVMCPUCC pVCpu); 40 43 41 44 #ifdef IN_RING3 /* r3 only for now. */ 42 PGM_GST_DECL(int, Enter)(PVMCPUCC pVCpu, RTGCPHYS GCPhysCR3);43 45 PGM_GST_DECL(int, Relocate)(PVMCPUCC pVCpu, RTGCPTR offDelta); 44 PGM_GST_DECL(int, Exit)(PVMCPUCC pVCpu);45 46 #endif 46 47 RT_C_DECLS_END
Note:
See TracChangeset
for help on using the changeset viewer.