mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Updater: Add/clarify error messages
This commit is contained in:
@ -13,9 +13,15 @@
|
||||
class AutoUpdateChecker
|
||||
{
|
||||
public:
|
||||
enum class CheckType
|
||||
{
|
||||
Automatic,
|
||||
Manual,
|
||||
};
|
||||
// Initiates a check for updates in the background. Calls the OnUpdateAvailable callback if an
|
||||
// update is available, does "nothing" otherwise.
|
||||
void CheckForUpdate(std::string_view update_track, std::string_view hash_override);
|
||||
void CheckForUpdate(std::string_view update_track, std::string_view hash_override,
|
||||
CheckType check_type);
|
||||
|
||||
static bool SystemSupportsAutoUpdates();
|
||||
|
||||
|
Reference in New Issue
Block a user