dolphin/Source/Core/Updater/UI.h

25 lines
527 B
C
Raw Normal View History

2018-03-27 16:28:40 -06: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 03:54:56 -07:00
void Error(const std::string& text);
2018-03-27 16:28:40 -06:00
void Stop();
void SetDescription(const std::string& text);
2018-11-15 01:01:29 -07: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 16:28:40 -06:00
} // namespace UI