IProfAdmin::GetLastError
The IProfAdmin::GetLastError
method returns a MAPIERROR structure containing information about the
previous error occurring to a profile administration object.
Quick Info
See IProfAdmin
: IUnknown
HRESULT GetLastError(
HRESULT hResult,
|
|
ULONG ulFlags,
|
|
LPMAPIERROR FAR * lppMAPIError |
|
) |
|
Parameters
hResult
[in] HRESULT
data type containing the containing the error code 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 the MAPIERROR structure containing version, component,
and context information for the error. The lppMAPIError parameter can be
set to NULL if there is no MAPIERROR structure to return.
Return Values
S_OK
The call
succeeded and has returned the expected value or values.
MAPI_E_BAD_CHARWIDTH
Either the
MAPI_UNICODE flag was set and the implementation does not support Unicode, or
MAPI_UNICODE was not set and the implementation only supports Unicode.
Remarks
The IProfAdmin::GetLastError
method retrieves information about the last error returned from a method call
for the profile administration object.
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, the a pointer to NULL is returned in
lppMAPIError.
To release
all the memory allocated by MAPI for the MAPIERROR structure, call the MAPIFreeBuffer
For more
information about the GetLastError method, see Using Extended Errors
See Also