| 42 | namespace |
| 43 | { |
| 44 | std::filesystem::path GetModulePath() |
| 45 | { |
| 46 | char buffer[1024]; |
| 47 | ::GetModuleFileNameA(nullptr, buffer, ARRAYSIZE(buffer)); |
| 48 | return std::filesystem::path{ buffer }; |
| 49 | } |
| 50 | |
| 51 | std::string GetUrlFromPath(const std::filesystem::path& path) |
| 52 | { |