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

16 lines
265 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;
};
std::vector<Task> getInitTasks();
std::vector<Task> getExitTasks();
}