#include #include #include #include #include namespace hex { void ImHexApi::Common::closeImHex(bool noQuestions) { EventManager::post(noQuestions); } void ImHexApi::Common::restartImHex() { EventManager::post(false); std::atexit([] { execve(SharedData::mainArgv[0], SharedData::mainArgv, SharedData::mainEnvp); }); } void ImHexApi::Bookmarks::add(Region region, const std::string &name, const std::string &comment, u32 color) { Entry entry; entry.region = region; entry.name.reserve(name.length()); entry.comment.reserve(comment.length()); std::copy(name.begin(), name.end(), std::back_inserter(entry.name)); std::copy(comment.begin(), comment.end(), std::back_inserter(entry.comment)); entry.locked = false; entry.color = color; EventManager::post(entry); } void ImHexApi::Bookmarks::add(u64 addr, size_t size, const std::string &name, const std::string &comment, u32 color) { Bookmarks::add(Region { addr, size }, name, comment, color); } std::list &ImHexApi::Bookmarks::getEntries() { return SharedData::bookmarkEntries; } prv::Provider *ImHexApi::Provider::get() { if (!ImHexApi::Provider::isValid()) return nullptr; return SharedData::providers[SharedData::currentProvider]; } const std::vector &ImHexApi::Provider::getProviders() { return SharedData::providers; } bool ImHexApi::Provider::isValid() { return !SharedData::providers.empty(); } void ImHexApi::Provider::add(prv::Provider *provider) { SharedData::providers.push_back(provider); SharedData::currentProvider = SharedData::providers.size() - 1; EventManager::post(provider); } void ImHexApi::Provider::remove(prv::Provider *provider) { auto &providers = SharedData::providers; auto it = std::find(providers.begin(), providers.end(), provider); providers.erase(it); if (it - providers.begin() == SharedData::currentProvider) SharedData::currentProvider = 0; delete provider; } Task ImHexApi::Tasks::createTask(const std::string &unlocalizedName, u64 maxValue) { return Task(unlocalizedName, maxValue); } }