mirror of
https://git.citron-emu.org/citron/emulator
synced 2025-12-20 11:03:56 +00:00
fix: add UpdateResult enum to updater dialog forward declarations
Signed-off-by: Zephyron <zephyron@citron-emu.org>
This commit is contained in:
@@ -18,7 +18,19 @@
|
|||||||
// Forward declarations for non-Windows platforms
|
// Forward declarations for non-Windows platforms
|
||||||
namespace Updater {
|
namespace Updater {
|
||||||
struct UpdateInfo;
|
struct UpdateInfo;
|
||||||
class UpdaterService;
|
class UpdaterService {
|
||||||
|
public:
|
||||||
|
enum class UpdateResult {
|
||||||
|
Success,
|
||||||
|
Failed,
|
||||||
|
Cancelled,
|
||||||
|
NetworkError,
|
||||||
|
ExtractionError,
|
||||||
|
PermissionError,
|
||||||
|
InvalidArchive,
|
||||||
|
NoUpdateAvailable
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user