#include #include #include #include #include #include "crash_handlers.hpp" #include #include namespace hex::init { int runImHex(); void runCommandLine(int argc, char **argv); } /** * @brief Main entry point of ImHex * @param argc Argument count * @param argv Argument values * @return Exit code */ int main(int argc, char **argv) { using namespace hex; std::setlocale(LC_ALL, "en_US.utf8"); // Set the main thread's name to "Main" TaskManager::setCurrentThreadName("Main"); // Setup crash handlers right away to catch crashes as early as possible crash::setupCrashHandlers(); // Run platform-specific initialization code Window::initNative(); // Setup messaging system to allow sending commands to the main ImHex instance hex::messaging::setupMessaging(); // Handle command line arguments if any have been passed if (argc > 1) { init::runCommandLine(argc, argv); } // Log some system information to aid debugging when users share their logs log::info("Welcome to ImHex {}!", ImHexApi::System::getImHexVersion().get()); log::info("Compiled using commit {}@{}", ImHexApi::System::getCommitBranch(), ImHexApi::System::getCommitHash()); log::info("Running on {} {} ({})", ImHexApi::System::getOSName(), ImHexApi::System::getOSVersion(), ImHexApi::System::getArchitecture()); #if defined(OS_LINUX) if (auto distro = ImHexApi::System::getLinuxDistro(); distro.has_value()) { log::info("Linux distribution: {}. Version: {}", distro->name, distro->version == "" ? "None" : distro->version); } #endif // Run ImHex return init::runImHex(); }