Scroll to navigation

ScDupPropset(3w) Wine API ScDupPropset(3w)

NAME

ScDupPropset (MAPI32.174)

SYNOPSIS

SCODE ScDupPropset
(
int cValues,
LPSPropValue lpProps,
LPALLOCATEBUFFER lpAlloc,
LPSPropValue* lpNewProp
)
 

DESCRIPTION

Duplicate a property value array into a contiguous block of memory.
 

PARAMS

cValues [In] Number of properties in lpProps.
lpProps [In] Property array to duplicate.
lpAlloc [In] Memory allocation function, use MAPIAllocateBuffer(3w).
lpNewProp [Out] Destination for the newly duplicated property value array.
 

RETURNS

Success: S_OK. *lpNewProp contains the duplicated array.
Failure: MAPI_E_INVALID_PARAMETER, if any parameter is invalid, MAPI_E_NOT_ENOUGH_MEMORY, if memory allocation fails.
 

IMPLEMENTATION

Declared in "mapiutil.h".
Implemented in "dlls/mapi32/prop.c".
Debug channel "mapi".
Oct 2012 Wine API