Windows.QueryVirtualMemoryInformation C# (CSharp) Method

QueryVirtualMemoryInformation() private method

private QueryVirtualMemoryInformation ( HANDLE Process, void* VirtualAddress, WIN32_MEMORY_INFORMATION_CLASS MemoryInformationClass, void* MemoryInformation, nuint MemoryInformationSize, nuint* ReturnSize ) : BOOL
Process HANDLE
VirtualAddress void*
MemoryInformationClass WIN32_MEMORY_INFORMATION_CLASS
MemoryInformation void*
MemoryInformationSize nuint
ReturnSize nuint*
return BOOL
    public static extern BOOL QueryVirtualMemoryInformation(HANDLE Process, [NativeTypeName("const void *")] void* VirtualAddress, WIN32_MEMORY_INFORMATION_CLASS MemoryInformationClass, [NativeTypeName("PVOID")] void* MemoryInformation, [NativeTypeName("SIZE_T")] nuint MemoryInformationSize, [NativeTypeName("PSIZE_T")] nuint* ReturnSize);