TransportCheckForNewMailInfo
This structure is used to pass folder information between the TransportCheckForNewMail function and its callback function.
At a Glance
Header file: |
Msgstor2.h |
Platforms: |
H/PC 3.0 |
Windows CE versions: |
2.10 and later |
Syntax
typedef struct TransportCheckForNewMailInfo{
TransportFolderList* ptfl;
BOOL fFree;
HANDLE hTerminateEvent;
DWORD dwReserverd;
} TransportCheckForNewMailInfo, *lpTransportCheckForNewMailInfo;
Members
- pftl
- Pointer to a TransportFolderList structure that contains the names of the folders to check for new mail in.
- fFree
- Boolean that indicates if ptfl should be allocated or freed. If fFree is set to TRUE, the client creates a TransportFolderList structure and assigns ptfl to the structure. If fFree is set to FALSE, the client frees the TransportFolderList structure pointed to by ptfl.
- hTerminateEvent
- Handle to the event used to stop the callback function from checking for new mail.
- dwReserved
- Reserved DWORD; set to 0.