Platform SDK: MAPI |
The IMAPITable::GetLastError method returns a MAPIERROR structure containing information about the previous error on the table.
HRESULT GetLastError( HRESULT hResult, ULONG ulFlags, LPMAPIERROR FAR * lppMAPIError );
The IMAPITable::GetLastError method returns detailed information, if available, about a prior method call that failed. This information can be displayed in a message or a dialog box.
Call GetLastError whenever you need to display information about an error to the user.
You can make use of the MAPIERROR structure pointed to by the lppMAPIError parameter — if the table object supplies one — only if GetLastError returns S_OK. Sometimes the table implementation cannot determine what the last error was or has nothing more to report about the error. In this situation, you'll find a pointer to NULL in lppMAPIError instead.
To release all the memory allocated for the MAPIERROR structure, call the MAPIFreeBuffer function.
For more information about the GetLastError method, see Using Extended Errors.