Difference between revisions of "User:Grovespaz/Kernel/MmIsAddressValid"
From xboxdevwiki
(Initial creation based on ntoskrnl.h) |
|||
| Line 1: | Line 1: | ||
| − | + | {{KernelExport|name=MmIsAddressValid|ordinal=174}} | |
| + | |||
| + | Checks whether a page fault would occur for a read operation on a specified address. | ||
| + | |||
| + | The original Windows NT function is documented in the MSDN: [https://docs.microsoft.com/en-us/windows-hardware/drivers/ddi/content/ntddk/nf-ntddk-mmisaddressvalid MmIsAddressValid] | ||
| + | == Syntax == | ||
| + | <nowiki>XBAPI BOOLEAN NTAPI MmIsAddressValid | ||
| + | ( | ||
| + | IN PVOID VirtualAddress | ||
| + | );</nowiki> | ||
| + | |||
| + | == Parameters == | ||
| + | === VirtualAddress === | ||
| + | The virtual address to be checked. | ||
| + | == Return Value == | ||
| + | MmIsAddressValid returns '''BOOLEAN''': TRUE if a page fault would occur, FALSE if not.. | ||
Latest revision as of 07:58, 1 September 2018
MmIsAddressValid is an export in the Xbox Kernel. It has ordinal 174.
Checks whether a page fault would occur for a read operation on a specified address.
The original Windows NT function is documented in the MSDN: MmIsAddressValid
Syntax
XBAPI BOOLEAN NTAPI MmIsAddressValid
(
IN PVOID VirtualAddress
);
Parameters
VirtualAddress
The virtual address to be checked.
Return Value
MmIsAddressValid returns BOOLEAN: TRUE if a page fault would occur, FALSE if not..