Unicode C
Unicode C
Transition from Imap.FetchSequence to Imap.FetchRange
Provides instructions for replacing deprecated FetchSequence method calls with FetchRange.Chilkat Unicode C Downloads
#include <C_CkImapW.h>
#include <C_CkEmailBundleW.h>
void ChilkatSample(void)
{
BOOL success;
HCkImapW imap;
int startSeqNum;
int count;
HCkEmailBundleW bundleObj;
BOOL headersOnly;
HCkEmailBundleW bundleOut;
success = FALSE;
imap = CkImapW_Create();
// ...
// ...
startSeqNum = 1;
count = 5;
// ------------------------------------------------------------------------
// The FetchSequence method is deprecated:
bundleObj = CkImapW_FetchSequence(imap,startSeqNum,count);
if (CkImapW_getLastMethodSuccess(imap) == FALSE) {
wprintf(L"%s\n",CkImapW_lastErrorText(imap));
CkImapW_Dispose(imap);
return;
}
// ...
// ...
CkEmailBundleW_Dispose(bundleObj);
// ------------------------------------------------------------------------
// Do the equivalent using FetchRange.
// Your application creates a new, empty EmailBundle object which is passed
// in the last argument and filled upon success.
headersOnly = FALSE;
bundleOut = CkEmailBundleW_Create();
success = CkImapW_FetchRange(imap,headersOnly,startSeqNum,count,bundleOut);
if (success == FALSE) {
wprintf(L"%s\n",CkImapW_lastErrorText(imap));
CkImapW_Dispose(imap);
CkEmailBundleW_Dispose(bundleOut);
return;
}
CkImapW_Dispose(imap);
CkEmailBundleW_Dispose(bundleOut);
}