IIDFromString function ole32

int IIDFromString(
  1. Pointer<Utf16> lpsz,
  2. Pointer<GUID> lpiid
)

Converts a string generated by the StringFromIID function back into the original interface identifier (IID).

HRESULT IIDFromString(
  LPCOLESTR lpsz,
  LPIID     lpiid
);

Implementation

int IIDFromString(Pointer<Utf16> lpsz, Pointer<GUID> lpiid) =>
    _IIDFromString(lpsz, lpiid);