MAPIAllocateMore.3w

Langue: en

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

Section: 3 (Bibliothèques de fonctions)

NAME

MAPIAllocateMore (MAPI32.14)

SYNOPSIS

SCODE MAPIAllocateMore
 (
  ULONG   cbSize,
  LPVOID  lpOrig,
  LPVOID* lppBuffer
 )

DESCRIPTION

MAPIAllocateMore@12 (MAPI32.15).

Allocate a block of memory linked to a previous allocation.

PARAMS

cbSize [In] Size of the block to allocate in bytes.

lpOrig [In] Initial allocation to link to, from MAPIAllocateBuffer(3w).

lppBuffer [Out] Destination for pointer to allocated memory.

RETURNS

Success: S_OK. *lppBuffer is filled with a pointer to a memory block of length cbSize bytes.

Failure: MAPI_E_INVALID_PARAMETER, if lpOrig or lppBuffer is invalid. MAPI_E_NOT_ENOUGH_MEMORY, if memory allocation fails.

NOTES

Memory allocated with this function and stored in *lppBuffer is freed when lpOrig is passed to MAPIFreeBuffer(3w). It should not be freed independently.

IMPLEMENTATION

Defined in "mapix.h".

Implemented in "dlls/mapi32/util.c".

Debug channel "mapi".