Important: |
---|
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. |
This function unmarshals an HRESULTtype from the specified stream.
Syntax
STDAPI CoUnmarshalHresult( LPSTREAM pStm, HRESULT* phresult ); |
Parameters
- pStm
-
[in] Pointer to the stream from which the HRESULTis to be unmarshaled.
- phresult
-
[out] Pointer to the unmarshaled HRESULT.
Return Value
This function supports the standard return values E_OUTOFMEMORY and E_UNEXPECTED, as well as the following:
- S_OK
-
The HRESULTwas unmarshaled successfully.
- STG_E_INVALIDPOINTER
-
pStmis an invalid pointer.
Remarks
Your application does not explicitly call this function unless performing custom marshaling with a special implementation of IMarshal, and your implementation needs to unmarshal an HRESULT.
The application must use CoUnmarshalHresultto unmarshal HRESULTs previously marshaled by a call to the CoMarshalHresultfunction.
This function performs the following tasks:
- Reads an HRESULT from a stream.
- Returns the HRESULT.
To determine whether the platform supports this function, see Determining Supported COM APIs.
Requirements
Header | objbase.h |
Library | ole32.lib |
Windows Embedded CE | Windows CE 3.0 and later |
Windows Mobile | Windows Mobile Version 5.0 and later |