Kernel32PssQuerySnapshot Method
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Kernel32.dll", ExactSpelling = true)]
public static Win32ErrorCode PssQuerySnapshot(
IntPtr snapshotHandle,
PssQueryInformationClass informationClass,
IntPtr buffer,
uint bufferLength
)
<DllImportAttribute("Kernel32.dll", ExactSpelling := true>]
Public Shared Function PssQuerySnapshot (
snapshotHandle As IntPtr,
informationClass As PssQueryInformationClass,
buffer As IntPtr,
bufferLength As UInteger
) As Win32ErrorCode
Dim snapshotHandle As IntPtr
Dim informationClass As PssQueryInformationClass
Dim buffer As IntPtr
Dim bufferLength As UInteger
Dim returnValue As Win32ErrorCode
returnValue = Kernel32.PssQuerySnapshot(snapshotHandle,
informationClass, buffer, bufferLength)
public:
[DllImportAttribute(L"Kernel32.dll", ExactSpelling = true)]
static Win32ErrorCode PssQuerySnapshot(
IntPtr snapshotHandle,
PssQueryInformationClass informationClass,
IntPtr buffer,
unsigned int bufferLength
)
[<DllImportAttribute("Kernel32.dll", ExactSpelling = true)>]
static member PssQuerySnapshot :
snapshotHandle : IntPtr *
informationClass : PssQueryInformationClass *
buffer : IntPtr *
bufferLength : uint32 -> Win32ErrorCode
No code example is currently available or this language may not be supported.
- snapshotHandle IntPtr
-
A handle to the snapshot to query.
- informationClass PssQueryInformationClass
-
An enumerator member that selects what information to query.
- buffer IntPtr
-
The information that this function provides.
- bufferLength UInt32
-
The size of buffer, in bytes.
Win32ErrorCode
If the function succeeds, the return value is
ERROR_SUCCESS;
othwerise, a different
Win32ErrorCode value.