mirror of
https://codeberg.org/WinDurango/WinDurango.git
synced 2026-04-18 02:23:34 -04:00
XboxLiveConfiguration Fixes
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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"";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user