IMAPISession::GetLastError
The IMAPISession::GetLastError
method returns a MAPIERROR
Quick Info
See IMAPISession
: IUnknown
HRESULT GetLastError(
HRESULT hResult,
|
|
ULONG ulFlags,
|
|
LPMAPIERROR FAR * lppMAPIError |
|
) |
|
Parameters
hResult
[in] HRESULT
data type containing the error value generated in the previous method call.
ulFlags
[in] Bitmask
of flags that controls the type of the returned strings. The following flag can
be set:
MAPI_UNICODE
The strings
in the MAPIERROR
lppMAPIError
[out] Pointer
to a pointer to a MAPIERROR structure containing version, component, and
context information for the error. The lppMAPIError parameter can be set
to NULL if MAPI cannot supply a MAPIERROR structure with appropriate
information.
Return Values
S_OK
The call
succeeded and has returned the expected value or values.
MAPI_E_BAD_CHARWIDTH
The
MAPI_UNICODE flag was set and the session does not support Unicode.
Remarks
The IMAPISession::GetLastError
method retrieves information about the last error that was returned by an IMAPISession
method call. Clients can provide their users with detailed information about
the error by including this information in a dialog box.
Notes to Callers
You can make
use of the MAPIERROR structure pointed to by the lppMAPIError
parameter, if MAPI supplies one, only if GetLastError returns S_OK. Sometimes
MAPI cannot determine what the last error was or has nothing more to report
about the error. In this situation, GetLastError returns a pointer to
NULL in lppMAPIError instead.
For more
information about the GetLastError method, see Using Extended Errors
See Also