Skip to main content

Appendixes

Here you will find additional information about the RxSDK objects and their usage.

Appendix A: Return Values

The COM objects expose one or more interfaces each. All methods defined by these interfaces return an HRESULT status value to inform the client about the success or failure of the requested operation.

Currently, the RxSDK objects return the following standard HRESULT values:

NameDescriptionValue
S_OKOperation successful0x00000000
S_FALSEOperation successful, but may have been void0x00000001
E_UNEXPECTEDUnexpected failure0x8000FFFF
E_NOTIMPLNot implemented0x80004001
E_OUTOFMEMORYFailed to allocate necessary memory0x8007000E
E_INVALIDARGOne or more arguments are invalid0x80070057
E_NOINTERFACENo such interface supported0x80004002
E_POINTERInvalid pointer0x80004003
E_HANDLEInvalid handle0x80070006
E_ABORTOperation aborted0x80004004
E_FAILUnspecified failure0x80004005
E_ACCESSDENIEDGeneral access denied error0x80070005

Additional Resources

More information about these values can be found in the Platform SDK delivered by Microsoft, as well as on the MSDN website.