#include <nd/dwc_nd.h>
typedef enum {
DWC_ND_CBREASON_INITIALIZE,
DWC_ND_CBREASON_GETFILELISTNUM,
DWC_ND_CBREASON_GETFILELIST,
DWC_ND_CBREASON_GETFILE,
} DWCNdCallbackReason;
Enumeration type indicating what kind of process was running when the notifying callback function was called by the Download library.
DWC_ND_CBREASON_INITIALIZE |
Notifying callback function was called while the Download library was initializing. |
DWC_ND_CBREASON_GETFILELISTNUM |
Notifying callback function was called while the total number of downloadable files was being downloaded. |
DWC_ND_CBREASON_GETFILELIST |
Notifying callback function was called while the file information list was being downloaded. |
DWC_ND_CBREASON_GETFILE |
Notifying callback function was called while a file was being downloaded. |
04/26/2006 Initial version.