SafeArrayDestroy function oleaut32

int SafeArrayDestroy(
  1. Pointer<SAFEARRAY> psa
)

Destroys an existing array descriptor and all of the data in the array. If objects are stored in the array, Release is called on each object in the array.

HRESULT SafeArrayDestroy(
  [in] SAFEARRAY *psa
);

Implementation

int SafeArrayDestroy(Pointer<SAFEARRAY> psa) => _SafeArrayDestroy(psa);