SafeArrayPutElement function oleaut32

int SafeArrayPutElement(
  1. Pointer<SAFEARRAY> psa,
  2. Pointer<Int32> rgIndices,
  3. Pointer<NativeType> pv
)

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);