SafeArrayGetIID function oleaut32

int SafeArrayGetIID(
  1. Pointer<SAFEARRAY> psa,
  2. Pointer<GUID> pguid
)

Gets the GUID of the interface contained within the specified safe array.

HRESULT SafeArrayGetIID(
  [in]  SAFEARRAY *psa,
  [out] GUID      *pguid
);

Implementation

int SafeArrayGetIID(Pointer<SAFEARRAY> psa, Pointer<GUID> pguid) =>
    _SafeArrayGetIID(psa, pguid);