| 52 | |
| 53 | |
| 54 | static std::pair<std::wstring_view, std::wstring_view> ParseToastArgument(std::wstring_view argument) |
| 55 | { |
| 56 | auto const index = argument.find(L'='); |
| 57 | return { argument.substr(0, index), argument.substr(index + 1) }; |
| 58 | } |
| 59 | |
| 60 | |
| 61 | void App::OnLaunched(LaunchActivatedEventArgs const&) |
no outgoing calls
no test coverage detected