XboxLiveConfiguration Fixes

This commit is contained in:
Rodrigo Todescatto
2026-03-08 19:26:02 -03:00
parent 1dec6ce609
commit bafafe9c7f
2 changed files with 5 additions and 7 deletions

View File

@@ -3,7 +3,7 @@
namespace winrt::Windows::Xbox::Services::implementation
{
struct XboxLiveConfiguration : XboxLiveConfigurationT<XboxLiveConfiguration>
struct XboxLiveConfiguration
{
XboxLiveConfiguration() = default;
@@ -12,6 +12,7 @@ namespace winrt::Windows::Xbox::Services::implementation
static hstring SandboxId();
};
}
namespace winrt::Windows::Xbox::Services::factory_implementation
{
struct XboxLiveConfiguration : XboxLiveConfigurationT<XboxLiveConfiguration, implementation::XboxLiveConfiguration>

View File

@@ -5,17 +5,14 @@ namespace winrt::Windows::Xbox::Services::implementation
{
hstring XboxLiveConfiguration::TitleId()
{
p_wd->log.Warn("WinDurango::WinRT::Windows::Xbox::Services", "Unimplemented: TitleId");
throw hresult_not_implemented();
return L"";
}
hstring XboxLiveConfiguration::PrimaryServiceConfigId()
{
p_wd->log.Warn("WinDurango::WinRT::Windows::Xbox::Services", "Unimplemented: PrimaryServiceConfigId");
throw hresult_not_implemented();
return L"";
}
hstring XboxLiveConfiguration::SandboxId()
{
p_wd->log.Warn("WinDurango::WinRT::Windows::Xbox::Services", "Unimplemented: SandboxId");
throw hresult_not_implemented();
return L"";
}
}