GetErrorInfo

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This function retrieves the error information pointer set by the previous call to SetErrorInfo in the current logical thread.

Syntax

HRESULT GetErrorInfo( 
  DWORD dwReserved, 
  IerrorInfo** pperrinfo 
);

Parameters

  • dwReserved
    [in] Reserved for future use; must set to zero.
  • pperrinfo
    [in] Pointer to a pointer to a system-implemented generic error object.

Return Value

If successful, the function returns the HRESULT value S_OK. If there was no error object to return, the function returns S_FALSE.

Remarks

This function retrieves a pointer to the most recently set IErrorInfo pointer in the current logical thread. It transfers ownership of the error object to the caller and clears the error state for the thread.

Requirements

Header oleauto.h
Library oleaut32.lib
Windows Embedded CE Windows CE 2.10 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

Automation Functions
SetErrorInfo
IErrorInfo