/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/Workspaces/WorkspacesLib/WbemHelper.h
24 строки
505 B
Seraphima Zykova
[Workspaces] PWA follow-up (#36217)
05 дек 2024, 18:24
Не верифицирован
05 дек 2024, 18:24
e19590f
Код
Авторство
О чём код?
#pragma once struct IWbemLocator; struct IWbemServices; class WbemHelper { public: static std::unique_ptr<WbemHelper> Create(); ~WbemHelper(); std::wstring GetCommandLineArgs(DWORD processID) const; std::wstring GetExecutablePath(DWORD processID) const; private: WbemHelper() = default; bool Initialize(); std::wstring Query(const std::wstring& query, const std::wstring& propertyName) const; IWbemLocator* m_locator = NULL; IWbemServices* m_services = NULL; };