| 4 | #include <format> |
| 5 | |
| 6 | winrt::hstring GetStringResource(std::wstring_view key) |
| 7 | { |
| 8 | static winrt::Microsoft::Windows::ApplicationModel::Resources::ResourceManager manager; |
| 9 | return manager.MainResourceMap().GetValue(std::format(L"Resources/{}", key)).ValueAsString(); |
| 10 | } |
| 11 | |
| 12 | winrt::hstring ToCapital(winrt::hstring word) |
| 13 | { |
no outgoing calls
no test coverage detected