.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH ReAlloc 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fBReAlloc\fR (COMCTL32.72) .SH SYNOPSIS LPVOID ReAlloc ( LPVOID \fIlpSrc\fR, DWORD \fIdwSize\fR ) .SH DESCRIPTION .PP Changes the size of an allocated memory block or allocates a memory block using the dll's private heap. .SH PARAMS \fIlpSrc\fR \fB[In]\fR pointer to memory block which will be resized. .PP \fIdwSize\fR \fB[In]\fR new size of the memory block. .PP .SH RETURNS .PP \fBSuccess:\fR pointer to the resized memory block .PP \fBFailure:\fR \fBNULL\fR. .SH NOTES .PP If \fIlpSrc\fR is a NULL-pointer, then ReAlloc allocates a memory block like Alloc. .SH IMPLEMENTATION .PP Exported by ordinal only. Use \fBGetProcAddress(3w)\fR to obtain a pointer to the function. .PP Implemented in \fB"dlls/comctl32/comctl32undoc.c"\fR. .PP Debug channel \fB"commctrl"\fR.