/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/common/interop/CommonManaged.h
20 строк
521 B
Boliang Zhang
Add preview release versioning and update channel support (#49414)
06 авг 2026, 18:45
Не верифицирован
06 авг 2026, 18:45
558e633
Код
Авторство
О чём код?
#pragma once #include "CommonManaged.g.h" namespace winrt::PowerToys::Interop::implementation { struct CommonManaged : CommonManagedT<CommonManaged> { CommonManaged() = default; static hstring GetProductVersion(); static hstring GetProductVersionChannel(); static hstring GetProductVersionSourceCommit(); }; } namespace winrt::PowerToys::Interop::factory_implementation { struct CommonManaged : CommonManagedT<CommonManaged, implementation::CommonManaged> { }; }