RtlCreateHeap.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

RtlCreateHeap (NTDLL.@)

SYNOPSIS

HANDLE RtlCreateHeap
 (
  ULONG                flags,
  PVOID                addr,
  SIZE_T               totalSize,
  SIZE_T               commitSize,
  PVOID                unknown,
  PRTL_HEAP_DEFINITION definition
 )

DESCRIPTION

Create a new Heap.

PARAMS

flags [In] HEAP_ flags from "winnt.h".

addr [In] Desired base address.

totalSize [In] Total size of the heap, or 0 for a growable heap.

commitSize [In] Amount of heap space to commit.

unknown [In] Not yet understood.

definition [In] Heap definition.

RETURNS

Success: A HANDLE to the newly created heap.

Failure: a NULL HANDLE.

IMPLEMENTATION

Defined in "winternl.h".

Implemented in "dlls/ntdll/heap.c".

Debug channel "heap".