SafeArrayPutElement function oleaut32
Stores the data element at the specified location in the array.
HRESULT SafeArrayPutElement(
[in] SAFEARRAY *psa,
[in] LONG *rgIndices,
[in] void *pv
);
Implementation
int SafeArrayPutElement(
Pointer<SAFEARRAY> psa,
Pointer<Int32> rgIndices,
Pointer pv,
) => _SafeArrayPutElement(psa, rgIndices, pv);