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 to obtain a pointer to the function.

Implemented in "dlls/comctl32/comctl32undoc.c". source.winehq.org/source/dlls/comctl32/comctl32undoc.c

Debug channel "commctrl".


Copyright © 2008 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Jan 2008.