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