This structure is used by the
GetTransferStatus method to return
information about a message being submitted for delivery.
typedef struct _SMTPTRANSFERSTATUS
{
DWORD dwBytesTotal;
DWORD dwBytesCopied;
DWORD dwBytesPerSecond;
DWORD dwTimeElapsed;
DWORD dwTimeEstimated;
} SMTPTRANSFERSTATUS, *LPSMTPTRANSFERSTATUS;
Members
- dwBytesTotal
- The total number of bytes that will be transferred. If the size
of the message cannot be determined, this value will be zero.
- dwBytesCopied
- The total number of bytes that have been copied.
- dwBytesPerSecond
- The average number of bytes that have been copied per
second.
- dwTimeElapsed
- The number of seconds that have elapsed since the file transfer
started.
- dwTimeEstimated
- The estimated number of seconds until the transfer is
completed. This is based on the average number of bytes transferred
per second.
Requirements
Minimum Desktop Platform: Windows 7 (Service Pack 1)
Minimum Server Platform: Windows Server 2008 R2 (Service Pack 1)
Header File: cstools10.h
|