mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
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);
|
||
|
|
}
|
||
|
|
}
|