GetErrorInfo (Compact 2013)

3/26/2014

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; set to 0 (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

See Also

Reference

Automation Functions
SetErrorInfo
IErrorInfo