ui: Added global running tasks progress bar

This commit is contained in:
WerWolv
2021-12-16 23:48:52 +01:00
parent 677036fb9c
commit 891cc42f08
18 changed files with 193 additions and 29 deletions

View File

@@ -7,6 +7,7 @@
#include <string>
#include <hex/helpers/concepts.hpp>
#include <hex/api/task.hpp>
namespace hex {
@@ -15,7 +16,6 @@ namespace hex {
namespace ImHexApi {
namespace Common {
void sayHello();
void closeImHex(bool noQuestions = false);
void restartImHex();
@@ -55,6 +55,12 @@ namespace hex {
};
namespace Tasks {
Task createTask(const std::string &unlocalizedName, u64 maxValue);
}
};
}