PssNtQuerySnapshot - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTPSAPI_H
// Reserve objects
#if (PHNT_MODE != PHNT_MODE_KERNEL)
#if (PHNT_VERSION >= PHNT_WINBLUE)

// rev
/**
 * Queries information from a 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
    );

#endif
#endif
#endif

View code on GitHub

No description available.