blob: 2976606078a7d694afb9c7a41a5ba61f37ac2ba2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef NULLSOFT_ML_DOWNLOADS_ERRORS_H
#define NULLSOFT_ML_DOWNLOADS_ERRORS_H
enum
{
DOWNLOAD_SUCCESS = 0,
DOWNLOAD_404,
DOWNLOAD_TIMEOUT,
DOWNLOAD_NOHTTP,
DOWNLOAD_NOPARSER,
DOWNLOAD_CONNECTIONRESET,
DOWNLOAD_ERROR_PARSING_XML,
};
#endif
|