// ntddk.h
NTSYSAPI NTSTATUS RtlFlushNonVolatileMemoryRanges(
PVOID NvToken,
PNV_MEMORY_RANGE NvRanges,
SIZE_T NumRanges,
ULONG Flags
);
View the official Windows Driver Kit DDI referenceNo description available.
The routine RtlFlushNonVolatileMemoryRanges optimally flushes the given non-volatile memory regions.
NvTokenA pointer to an opaque structure that has information about various properties of the non-volatile memory region which RtlGetNonVolatileToken had returned.
NvRangesSpecifies an array of NV_MEMORY_RANGE structures which describe the non-volatile memory regions to flush
NumRangesSpecifies the number of elements in the NVRanges array.
FlagsFor flags specified, refer RtlFlushNonVolatileMemory as this routine also honors the flags apart from passing it to RtlFlushNonVolatileMemory.
The routine RtlFlushNonVolatileMemoryRanges returns one of the following:
| Return code | Description |
|---|---|
| STATUS_INVALID_PARAMETER | NvToken is an invalid pointer or token. |
| STATUS_SUCCESS | The request was successful. |
This routine is currently not supported for Windows Server until the next major release of Windows Server.