#ifndef _NTPSAPI_H
//
// Reserve objects
//
#if (PHNT_MODE != PHNT_MODE_KERNEL)
#if (PHNT_VERSION >= PHNT_WINDOWS_8_1)
// rev
/**
* The PssNtFreeRemoteSnapshot routine frees a remote process snapshot.
*
* \param ProcessHandle A handle to the process that contains the snapshot. The handle must have PROCESS_VM_READ, PROCESS_VM_OPERATION, and PROCESS_DUP_HANDLE rights.
* \param SnapshotHandle Handle to the snapshot to free.
* \return NTSTATUS Successful or errant status.
*/
NTSYSAPI
NTSTATUS
NTAPI
PssNtFreeRemoteSnapshot(
_In_ HANDLE ProcessHandle,
_In_ HANDLE SnapshotHandle
);
View code on GitHubNo description available.