RtlSizeHeap.3w

Langue: en

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

Section: 3 (Bibliothèques de fonctions)

NAME

RtlSizeHeap (NTDLL.@)

SYNOPSIS

SIZE_T RtlSizeHeap
 (
  HANDLE      heap,
  ULONG       flags,
  const void* ptr
 )

DESCRIPTION

Get the actual size of a memory block allocated from a Heap.

PARAMS

heap [In] Heap that block was allocated from.

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

ptr [In] Block to get the size of.

RETURNS

Success: The size of the block.

Failure: -1, heap or pointer are invalid.

NOTES

The size may be bigger than what was passed to RtlAllocateHeap(3w).

IMPLEMENTATION

Defined in "winternl.h".

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

Debug channel "heap".