Unmarshals an HRESULT type from the specified stream.
STDAPI CoUnmarshalHresult(
LPSTREAM pStm, //Pointer to stream used for unmarshaling
HRESULT * phresult //Pointer to the HRESULT
);
This function supports the standard return values E_OUTOFMEMORY and E_UNEXPECTED, as well as the following:
You do not explicitly call this function unless you are performing custom marshaling (that is, writing your own implementation of IMarshal), and your implementation needs to unmarshal an HRESULT.
You must use CoUnmarshalHresult to unmarshal HRESULTs previously marshaled by a call to the CoMarshalHresult function.
This function performs the following tasks:
Windows NT: Use version 3.1 or later.
Windows: Use Windows 95 or later.
Windows CE: Unsupported.
Header: Declared in objbase.h.
Import Library: Included as a resource in ole32.dll.