ReAlloc.3w

Langue: en

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

Section: 3 (Bibliothèques de fonctions)

NAME

ReAlloc (COMCTL32.72)

SYNOPSIS

LPVOID ReAlloc
 (
  LPVOID lpSrc,
  DWORD  dwSize
 )

DESCRIPTION

Changes the size of an allocated memory block or allocates a memory block using the dll's private heap.

PARAMS

lpSrc [In] pointer to memory block which will be resized.

dwSize [In] new size of the memory block.

RETURNS

Success: pointer to the resized memory block

Failure: NULL.

NOTES

If lpSrc is a NULL-pointer, then ReAlloc allocates a memory block like Alloc.

IMPLEMENTATION

Exported by ordinal only. Use GetProcAddress(3w) to obtain a pointer to the function.

Implemented in "dlls/comctl32/comctl32undoc.c".

Debug channel "commctrl".