| 36 | namespace |
| 37 | { |
| 38 | std::filesystem::path GetModulePath() |
| 39 | { |
| 40 | char buffer[1024]; |
| 41 | ::GetModuleFileNameA(nullptr, buffer, ARRAYSIZE(buffer)); |
| 42 | return std::filesystem::path{buffer}; |
| 43 | } |
| 44 | |
| 45 | std::string GetUrlFromPath(const std::filesystem::path& path) |
| 46 | { |