NAME

MAPIAllocateBuffer  (MAPI32.12)

SYNOPSIS

 SCODE MAPIAllocateBuffer
 (
  ULONG   cbSize,
  LPVOID* lppBuffer
 )

DESCRIPTION

MAPIAllocateBuffer@8 (MAPI32.13).

Allocate a block of memory.

PARAMS

cbSize [In] Size of the block to allocate in bytes.
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 lppBuffer is NULL. MAPI_E_NOT_ENOUGH_MEMORY, if the memory allocation fails.

NOTES

Memory allocated with this function should be freed with MAPIFreeBuffer. Further allocations of memory may be linked to the pointer returned using MAPIAllocateMore. Linked allocations are freed when the initial pointer is feed.

IMPLEMENTATION

Declared in "mapix.h". https://source.winehq.org/source/include/mapix.h

Implemented in "dlls/mapi32/util.c". https://source.winehq.org/source/dlls/mapi32/util.c

Debug channel "mapi".


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