阅读:979回复:1
关于MmGetPhysicalAddress
多谢各位的指点,继续请教:
1。函数MmGetPhysicalAddress的用法及包含的头文件 2。在那里可以查到相关资料? |
|
沙发#
发布于:2002-07-15 17:17
MmGetPhysicalAddress
PHYSICAL_ADDRESS MmGetPhysicalAddress( IN PVOID BaseAddress ); MmGetPhysicalAddress returns the physical address corresponding to a valid virtual address. Parameters BaseAddress Points to the virtual address for which to return the physical address. Include ntddk.h Return Value MmGetPhysicalAddress returns the physical address that corresponds to the given virtual address. Comments Callers of MmGetPhysicalAddress can be running at any IRQL, provided that the BaseAddress value is valid. 在ntddk的帮助文件中 |
|