/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/common/interop/LayoutMapManaged.cpp
19 строк
471 B
Josh Soref
Updates for check-spelling v0.0.25 (#40386)
09 июл 2025, 01:16
Не верифицирован
09 июл 2025, 01:16
bf16e10
Код
Авторство
О чём код?
#include "pch.h" #include "LayoutMapManaged.h" #include "LayoutMapManaged.g.cpp" namespace winrt::PowerToys::Interop::implementation { hstring LayoutMapManaged::GetKeyName(uint32_t key) { return hstring{ _map->GetKeyName(key) }; } uint32_t LayoutMapManaged::GetKeyValue(hstring const& name) { return _map->GetKeyFromName(std::wstring(name)); } void LayoutMapManaged::UpdateLayout() { _map->UpdateLayout(); } }