/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/Workspaces/WorkspacesLib/SteamHelper.h
24 строки
505 B
Kai Tao
[Workspaces]Fix for steam games capture&launch: capture and correctly launch steam games. (#38380)
23 апр 2025, 10:39
Не верифицирован
23 апр 2025, 10:39
5836144
Код
Авторство
О чём код?
#pragma once #include "pch.h" namespace Utils { namespace NonLocalizable { const std::wstring AcfFileNameTemplate = L"appmanifest_<gameid>.acfs"; } namespace Steam { struct SteamGame { std::wstring gameId; std::wstring gameInstallationPath; }; std::unique_ptr<SteamGame> GetSteamGameInfoFromAcfFile(const std::wstring& gameId); std::wstring GetGameIdFromUrlProtocolPath(const std::wstring& urlPath); } }