Files
WinDurango/dlls/winrt_x/Implementation/Microsoft.Xbox.Services.Multiplayer.Manager.MultiplayerGameSession.cpp
T
2025-06-03 00:54:43 -04:00

57 lines
2.7 KiB
C++

#include "pch.h"
#include "Microsoft.Xbox.Services.Multiplayer.Manager.MultiplayerGameSession.h"
#include "Microsoft.Xbox.Services.Multiplayer.Manager.MultiplayerGameSession.g.cpp"
namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
hstring MultiplayerGameSession::CorrelationId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionReference MultiplayerGameSession::SessionReference()
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember> MultiplayerGameSession::Members()
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember MultiplayerGameSession::Host()
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
hstring MultiplayerGameSession::Properties()
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionConstants MultiplayerGameSession::SessionConstants()
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IMapView<hstring, winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionReference> MultiplayerGameSession::TournamentTeams()
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IMapView<hstring, winrt::Microsoft::Xbox::Services::Tournaments::TournamentTeamResult> MultiplayerGameSession::TournamentTeamResults()
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
bool MultiplayerGameSession::IsHost(hstring const& xboxUserId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
void MultiplayerGameSession::SetProperties(hstring const& name, hstring const& valueJson, winrt::Windows::Foundation::IInspectable const& context)
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
void MultiplayerGameSession::SetSynchronizedProperties(hstring const& name, hstring const& valueJson, winrt::Windows::Foundation::IInspectable const& context)
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
void MultiplayerGameSession::SetSynchronizedHost(winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember const& gameHost, winrt::Windows::Foundation::IInspectable const& context)
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
}