/* */ #ifndef _D_DOWNLOAD_RESULT_CODE_H_ #define _D_DOWNLOAD_RESULT_CODE_H_ #include "common.h" namespace aria2 { namespace downloadresultcode { enum RESULT { FINISHED = 0, UNKNOWN_ERROR = 1, TIME_OUT = 2, RESOURCE_NOT_FOUND = 3, MAX_FILE_NOT_FOUND = 4, TOO_SLOW_DOWNLOAD_SPEED = 5, NETWORK_PROBLEM = 6, IN_PROGRESS = 7, CANNOT_RESUME = 8, }; } // namespace downloadresultcode } // namespace aria2 #endif // _D_DOWNLOAD_RESULT_CODE_H_