RtlFreeNonVolatileToken - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntddk.h

NTSYSAPI NTSTATUS RtlFreeNonVolatileToken(
  [in] PVOID NvToken
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ntddk-rtlfreenonvolatiletoken)

RtlFreeNonVolatileToken function

Description

The routine RtlFreeNonVolatileToken is a cleanup function for the opaque NvToken which is given by a successful call to RtlGetNonVolatileToken.

Parameters

NvToken [in]

A pointer to an opaque structure that has information about various properties of the non-volatile memory region which RtlGetNonVolatileToken had returned.

Return value

The routine RtlFreeNonVolatileToken returns one of the status codes:

Return code Description
STATUS_INVALID_PARAMETER NvToken is an invalid pointer or token.
STATUS_SUCCESS The request was successful.

Remarks

This routine is currently not supported for Windows Server until the next major release of Windows Server.

See also

RtlDrainNonVolatileFlush

RtlFlushNonVolatileMemory

RtlFlushNonVolatileMemoryRanges

RtlGetNonVolatileToken

RtlWriteNonVolatileMemory