#ifndef _NTPSAPI_H
//
// Reserve objects
//
#if (PHNT_MODE != PHNT_MODE_KERNEL)
#if (PHNT_VERSION >= PHNT_WINDOWS_8_1)
// rev
/**
* The PssNtQuerySnapshot routine queries information from the specified snapshot.
*
* \param SnapshotHandle Handle to the snapshot.
* \param InformationClass The information class to query.
* \param Buffer Pointer to a buffer that receives the queried information.
* \param BufferLength Length of the buffer.
* \return NTSTATUS Successful or errant status.
*/
NTSYSAPI
NTSTATUS
NTAPI
PssNtQuerySnapshot(
_In_ HANDLE SnapshotHandle,
_In_ PSSNT_QUERY_INFORMATION_CLASS InformationClass,
_Out_writes_bytes_(BufferLength) PVOID Buffer,
_In_ ULONG BufferLength
);
View code on GitHubNo description available.