dolphin/Source/Core/Updater/UI.h

25 lines
527 B
C
Raw Normal View History

2018-03-27 22:28:40 +00:00
// Copyright 2018 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <Windows.h>
namespace UI
{
void MessageLoop();
2018-11-08 10:54:56 +00:00
void Error(const std::string& text);
2018-03-27 22:28:40 +00:00
void Stop();
void SetDescription(const std::string& text);
2018-11-15 08:01:29 +00:00
void SetTotalMarquee(bool marquee);
void ResetTotalProgress();
void SetTotalProgress(int current, int total);
void SetCurrentMarquee(bool marquee);
void ResetCurrentProgress();
void SetCurrentProgress(int current, int total);
2018-03-27 22:28:40 +00:00
} // namespace UI