SafeArrayAllocDescriptor function oleaut32

int SafeArrayAllocDescriptor(
  1. int cDims,
  2. Pointer<Pointer<SAFEARRAY>> ppsaOut
)

Allocates memory for a safe array descriptor.

HRESULT SafeArrayAllocDescriptor(
  [in]  UINT      cDims,
  [out] SAFEARRAY **ppsaOut
);

Implementation

int SafeArrayAllocDescriptor(int cDims, Pointer<Pointer<SAFEARRAY>> ppsaOut) =>
    _SafeArrayAllocDescriptor(cDims, ppsaOut);