1
0
mirror of synced 2024-11-27 17:10:51 +01:00
ImHex/main/include/init/tasks.hpp

17 lines
285 B
C++
Raw Normal View History

#pragma once
#include <functional>
#include <string>
#include <vector>
namespace hex::init {
struct Task {
std::string name;
std::function<bool()> function;
bool async;
};
std::vector<Task> getInitTasks();
std::vector<Task> getExitTasks();
}