X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fpackage%2FDelegate.hxx;h=799823fe5718048fd67124189de5ce03cb2d7d00;hb=f19cf6d56a1d3d09dbc64b497a6ed45410c523f4;hp=a1b0f147741a59e97049df22c75c7dd3547ef6a9;hpb=71e9548c20f8008ba3d1a9b06ad0acf761775922;p=simgear.git diff --git a/simgear/package/Delegate.hxx b/simgear/package/Delegate.hxx index a1b0f147..799823fe 100644 --- a/simgear/package/Delegate.hxx +++ b/simgear/package/Delegate.hxx @@ -37,11 +37,13 @@ public: typedef enum { FAIL_SUCCESS = 0, ///< not a failure :) FAIL_UNKNOWN = 1, + FAIL_IN_PROGRESS, ///< downloading/installation in progress (not a failure :P) FAIL_CHECKSUM, ///< package MD5 verificstion failed FAIL_DOWNLOAD, ///< network issue FAIL_EXTRACT, ///< package archive failed to extract cleanly FAIL_FILESYSTEM, ///< unknown filesystem error occurred - FAIL_VERSION ///< version check mismatch + FAIL_VERSION, ///< version check mismatch + CATALOG_REFRESHED } FailureCode;