/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/Workspaces/WorkspacesLib/trace.h
24 строки
726 B
Stefan Markovic
[General]Add an option for telemetry opt-in and visualization(#34078)
24 окт 2024, 23:04
Не верифицирован
24 окт 2024, 23:04
133aa85
Код
Авторство
О чём код?
#pragma once #include <modules/interface/powertoy_module_interface.h> #include <WorkspacesLib/WorkspacesData.h> #include <workspaces-common/InvokePoint.h> #include <common/Telemetry/TraceBase.h> class Trace { public: class Workspaces : public telemetry::TraceBase { public: static void Enable(bool enabled) noexcept; static void Launch(bool success, const WorkspacesData::WorkspacesProject& project, InvokePoint invokePoint, double launchTimeSeconds, bool setupIsDifferent, const std::vector<std::pair<std::wstring, std::wstring>> errors) noexcept; }; };