pub unsafe fn QueryVirtualMemoryInformation<P0>(
    process: P0,
    virtualaddress: *const c_void,
    memoryinformationclass: WIN32_MEMORY_INFORMATION_CLASS,
    memoryinformation: *mut c_void,
    memoryinformationsize: usize,
    returnsize: Option<*mut usize>
) -> Result<()>
where P0: IntoParam<HANDLE>,