1
0
mirror of synced 2024-11-29 01:44:31 +01:00
ImHex/main/gui/include/init/tasks.hpp

16 lines
270 B
C++

#pragma once
#include <vector>
#include <init/splash_window.hpp>
namespace hex::init {
/**
* @brief Runs the exit tasks and print them to console
*/
void runExitTasks();
std::vector<Task> getInitTasks();
std::vector<Task> getExitTasks();
}