Scroll to navigation

VirtualQueryEx(3w) Wine API VirtualQueryEx(3w)

NAME

VirtualQueryEx (KERNEL32.@)

SYNOPSIS

SIZE_T VirtualQueryEx
(
HANDLE process,
LPCVOID addr,
PMEMORY_BASIC_INFORMATION info,
SIZE_T len
)
 

DESCRIPTION

Provides information about a range of pages in virtual address space of a specified process.
 

PARAMS

process [In] Handle to process.
addr [In] Address of region.
info [Out] Address of information buffer.
len [In] Size of buffer.
 

RETURNS

Number of bytes returned in information buffer.
 

IMPLEMENTATION

Declared in "winbase.h".
Implemented in "dlls/kernel32/virtual.c".
Oct 2012 Wine API