errors.h 247 B

123456789101112131415
  1. #ifndef NULLSOFT_ML_DOWNLOADS_ERRORS_H
  2. #define NULLSOFT_ML_DOWNLOADS_ERRORS_H
  3. enum
  4. {
  5. DOWNLOAD_SUCCESS = 0,
  6. DOWNLOAD_404,
  7. DOWNLOAD_TIMEOUT,
  8. DOWNLOAD_NOHTTP,
  9. DOWNLOAD_NOPARSER,
  10. DOWNLOAD_CONNECTIONRESET,
  11. DOWNLOAD_ERROR_PARSING_XML,
  12. };
  13. #endif