TRANSPORTEVENT
The TRANSPORTEVENT structure describes an error or warning event encountered by the transport.
Syntax
struct {
LPCWSTR pszSourceDLL;
LPCWSTR pszSourceProfile;
HRESULT hr;
DWORD dwSeverity;
DWORD cbData;
LPBYTE pbData;
} TRANSPORTEVENT;
Members
- pszSourceDLL
The transport's source DLL. - pszSourceProfile
The profile string that the transport was passed in through the IMailSyncHandler::Initialize method. - hr
HRESULT value corresponding to the error. - dwSeverity
Severity of the error; not used by Messaging. - cbData
Count of bytes pointed to by pbData. - pbData
Extra data that transport can store away for its own use.
Remarks
When the transport's IMailSyncHandler::DecodeEvent method is called, it is passed the same TRANSPORTEVENT structure that it used when calling the IMailSyncCallBack::LogEvent method.
Requirements
Pocket PC: Pocket PC 2002 and later
Smartphone: Smartphone 2002 and later
OS Versions: Windows CE 3.0 and later
Header: cemapi.h
See Also
MAPI Structures | Messaging | IMailSyncCallBack::LogEvent | IMailSyncHandler::DecodeEvent
Send Feedback on this topic to the authors