fix: add UpdateResult enum to updater dialog forward declarations

Signed-off-by: Zephyron <zephyron@citron-emu.org>
This commit is contained in:
Zephyron
2025-09-21 11:11:30 +10:00
parent 04132ac6b7
commit b585120025

View File

@@ -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