| 127 | decltype(WlanSetInterface) *fn_WlanSetInterface = nullptr; |
| 128 | |
| 129 | std::filesystem::path appdata() { |
| 130 | WCHAR sunshine_path[MAX_PATH]; |
| 131 | GetModuleFileNameW(nullptr, sunshine_path, _countof(sunshine_path)); |
| 132 | return std::filesystem::path {sunshine_path}.remove_filename() / L"config"sv; |
| 133 | } |
| 134 | |
| 135 | std::string from_sockaddr(const sockaddr *const socket_address) { |
| 136 | char data[INET6_ADDRSTRLEN] = {}; |
nothing calls this directly
no outgoing calls
no test coverage detected