mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
* Workspaces fix: capture steam games. * minor fix * Launch steam apps by url appmodeluserid instead of directly exe call. * fix copilot comment * fix * remove unnecessary string * expect words * white list words * Order of alphabet * exclude thin frame if it's not a steam game. * fix build * fix regression * adjust comment
25 lines
505 B
C++
25 lines
505 B
C++
#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);
|
|
}
|
|
}
|