Refactor logging and update function naming conventions

This commit standardizes the logging mechanism by replacing calls to `Logger::NotImplemented()` with the new `LOG_NOTIMPLEMENTED()` macro across multiple files in the Microsoft Xbox Services and Kinect libraries.

Function names in the debug logging macros have been updated to reflect the new naming conventions, changing `ExtractProjectName` to `RetrieveProjectName` and `ExtractFunctionName` to `RetrieveFunctionName`.

Additionally, the `Logger` class has been enhanced to include structured logging capabilities with various log levels and context information for better traceability.

New properties and methods have been introduced in several classes, while many implementations still remain to be completed. Overall, these changes improve maintainability and consistency in the logging framework across the Xbox development environment.
This commit is contained in:
Serenity
2025-06-03 03:59:32 -04:00
parent cf7d271c52
commit ea9a2facc0
377 changed files with 2644 additions and 2606 deletions

View File

@@ -5,7 +5,7 @@
#include <cstring>
// Function to extract the last folder name (project/module name)
inline const char* ExtractProjectName(const char* filePath) {
inline const char* RetrieveProjectName(const char* filePath) {
const char* lastSlash = strrchr(filePath, '/'); // UNIX-like path
if (!lastSlash) lastSlash = strrchr(filePath, '\\'); // Windows path
@@ -45,7 +45,7 @@ inline const char* ExtractProjectName(const char* filePath) {
#endif
// Function to extract only the function name from the full signature
inline const char* ExtractFunctionName(const char* fullSignature) {
inline const char* RetrieveFunctionName(const char* fullSignature) {
const char* paren = strchr(fullSignature, '('); // Find first '('
if (paren) {
static char functionName[ 256 ]; // Buffer to store function name
@@ -64,10 +64,10 @@ inline const char* ExtractFunctionName(const char* fullSignature) {
}
// Debug Print Macro (Basic)
#define DEBUG_LOG() printf("Line: %d --> %s --> %s \r\n", __LINE__,ExtractProjectName(__FILE__) ,ExtractFunctionName(FUNCTION_NAME) )
#define DEBUG_LOG() printf("Line: %d --> %s --> %s \r\n", __LINE__, RetrieveProjectName(__FILE__) ,RetrieveFunctionName(FUNCTION_NAME) )
// Debug Print Macro (Custom Message)
#define DEBUGLOG(fmt, ...) printf("Line: %d --> %s --> %s " fmt "\r\n", __LINE__ , ExtractProjectName(__FILE__), __FUNCTION__ , ##__VA_ARGS__)
#define DEBUGLOG(fmt, ...) printf("Line: %d --> %s --> %s " fmt "\r\n", __LINE__ , RetrieveProjectName(__FILE__), __FUNCTION__ , ##__VA_ARGS__)
#else
#define DEBUG_LOG() // No-op in release mode

View File

@@ -6,6 +6,6 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
{
winrt::Microsoft::Xbox::GameChat::ChatUser AccessibilitySettingsChangedEventArgs::ChatUser()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,12 +7,12 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
{
winrt::Microsoft::Xbox::GameChat::ChatUser ChannelUpdatedEventArgs::ChatUser()
{
Logger::NotImplemented();
LOG_NOTIMPLEMENTED();
throw hresult_not_implemented();
}
uint8_t ChannelUpdatedEventArgs::Channel()
{
Logger::NotImplemented();
LOG_NOTIMPLEMENTED();
throw hresult_not_implemented();
}
}

View File

@@ -6,15 +6,15 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
{
ChatManager::ChatManager(winrt::Microsoft::Xbox::GameChat::ChatSessionPeriod const& chatSessionPeriod)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
ChatManager::ChatManager(winrt::Microsoft::Xbox::GameChat::ChatSessionPeriod const& chatSessionPeriod, bool titleEnforcedPrivilegeAndPrivacy)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
ChatManager::ChatManager(winrt::Microsoft::Xbox::GameChat::ChatSessionPeriod const& chatSessionPeriod, winrt::Microsoft::Xbox::GameChat::PrivilegeAndPrivacyEnforcementMode const& privilegeAndPrivacyEnforcementMode, winrt::Microsoft::Xbox::GameChat::TextConversionMode const& textConversionMode)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatManagerSettings ChatManager::ChatSettings()
{
@@ -22,91 +22,91 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
}
winrt::event_token ChatManager::OnDebugMessage(winrt::Windows::Foundation::EventHandler<winrt::Microsoft::Xbox::GameChat::DebugMessageEventArgs> const& __param0)
{
Logger::NotImplemented(); return {};
LOG_NOTIMPLEMENTED(); return {};
}
void ChatManager::OnDebugMessage(winrt::event_token const& __param0) noexcept
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::event_token ChatManager::OnOutgoingChatPacketReady(winrt::Windows::Foundation::EventHandler<winrt::Microsoft::Xbox::GameChat::ChatPacketEventArgs> const& __param0)
{
Logger::NotImplemented(); return {};
LOG_NOTIMPLEMENTED(); return {};
}
void ChatManager::OnOutgoingChatPacketReady(winrt::event_token const& __param0) noexcept
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::event_token ChatManager::OnCompareUniqueConsoleIdentifiers(winrt::Microsoft::Xbox::GameChat::CompareUniqueConsoleIdentifiersHandler const& __param0)
{
Logger::NotImplemented(); return {};
LOG_NOTIMPLEMENTED(); return {};
}
void ChatManager::OnCompareUniqueConsoleIdentifiers(winrt::event_token const& __param0) noexcept
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::event_token ChatManager::OnUserAddedToChannel(winrt::Windows::Foundation::EventHandler<winrt::Microsoft::Xbox::GameChat::ChannelUpdatedEventArgs> const& __param0)
{
Logger::NotImplemented(); return {};
LOG_NOTIMPLEMENTED(); return {};
}
void ChatManager::OnUserAddedToChannel(winrt::event_token const& __param0) noexcept
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::event_token ChatManager::OnUserRemovedFromChannel(winrt::Windows::Foundation::EventHandler<winrt::Microsoft::Xbox::GameChat::ChannelUpdatedEventArgs> const& __param0)
{
Logger::NotImplemented(); return {};
LOG_NOTIMPLEMENTED(); return {};
}
void ChatManager::OnUserRemovedFromChannel(winrt::event_token const& __param0) noexcept
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::event_token ChatManager::OnPreEncodeAudioBuffer(winrt::Microsoft::Xbox::GameChat::ProcessAudioBufferHandler const& __param0)
{
Logger::NotImplemented(); return {};
LOG_NOTIMPLEMENTED(); return {};
}
void ChatManager::OnPreEncodeAudioBuffer(winrt::event_token const& __param0) noexcept
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::event_token ChatManager::OnPostDecodeAudioBuffer(winrt::Microsoft::Xbox::GameChat::ProcessAudioBufferHandler const& __param0)
{
Logger::NotImplemented(); return {};
LOG_NOTIMPLEMENTED(); return {};
}
void ChatManager::OnPostDecodeAudioBuffer(winrt::event_token const& __param0) noexcept
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::event_token ChatManager::OnTextMessageReceived(winrt::Windows::Foundation::EventHandler<winrt::Microsoft::Xbox::GameChat::TextMessageReceivedEventArgs> const& __param0)
{
Logger::NotImplemented(); return {};
LOG_NOTIMPLEMENTED(); return {};
}
void ChatManager::OnTextMessageReceived(winrt::event_token const& __param0) noexcept
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::event_token ChatManager::OnAccessibilitySettingsChanged(winrt::Windows::Foundation::EventHandler<winrt::Microsoft::Xbox::GameChat::AccessibilitySettingsChangedEventArgs> const& __param0)
{
Logger::NotImplemented(); return {};
LOG_NOTIMPLEMENTED(); return {};
}
void ChatManager::OnAccessibilitySettingsChanged(winrt::event_token const& __param0) noexcept
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatMessageType ChatManager::ProcessIncomingChatMessage(winrt::Windows::Storage::Streams::IBuffer const& chatPacket, winrt::Windows::Foundation::IInspectable const& uniqueRemoteConsoleIdentifier)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManager::HandleNewRemoteConsole(winrt::Windows::Foundation::IInspectable const& uniqueRemoteConsoleIdentifier)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncAction ChatManager::AddLocalUserToChatChannelAsync(uint8_t channelIndex, winrt::Windows::Xbox::System::IUser user)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncAction ChatManager::AddLocalUsersToChatChannelAsync(uint8_t channelIndex, winrt::Windows::Foundation::Collections::IVectorView<winrt::Windows::Xbox::System::User> users)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncAction ChatManager::RemoveLocalUserFromChatChannelAsync(uint8_t channelIndex, winrt::Windows::Xbox::System::IUser user)
{
@@ -114,7 +114,7 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
}
winrt::Windows::Foundation::IAsyncAction ChatManager::RemoveRemoteConsoleAsync(winrt::Windows::Foundation::IInspectable uniqueRemoteConsoleIdentifier)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::GameChat::ChatUser> ChatManager::GetChatUsers()
{
@@ -122,30 +122,30 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
}
void ChatManager::MuteUserFromAllChannels(winrt::Microsoft::Xbox::GameChat::ChatUser const& user)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManager::UnmuteUserFromAllChannels(winrt::Microsoft::Xbox::GameChat::ChatUser const& user)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManager::MuteAllUsersFromAllChannels()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManager::UnmuteAllUsersFromAllChannels()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncAction ChatManager::MuteUserIfReputationIsBadAsync(winrt::Microsoft::Xbox::GameChat::ChatUser user)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ChatManager::HasMicFocus()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatPerformanceCounters ChatManager::ChatPerformanceCounters()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -6,67 +6,67 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
{
uint32_t ChatManagerSettings::AudioThreadPeriodInMilliseconds()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManagerSettings::AudioThreadPeriodInMilliseconds(uint32_t value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ChatManagerSettings::AudioThreadAffinityMask()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManagerSettings::AudioThreadAffinityMask(uint32_t value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
int32_t ChatManagerSettings::AudioThreadPriority()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManagerSettings::AudioThreadPriority(int32_t value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Xbox::Chat::EncodingQuality ChatManagerSettings::AudioEncodingQuality()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManagerSettings::AudioEncodingQuality(winrt::Windows::Xbox::Chat::EncodingQuality const& value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ChatManagerSettings::JitterBufferMaxPackets()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManagerSettings::JitterBufferMaxPackets(uint32_t value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ChatManagerSettings::JitterBufferLowestNeededPacketCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManagerSettings::JitterBufferLowestNeededPacketCount(uint32_t value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ChatManagerSettings::JitterBufferPacketsBeforeRelaxingNeeded()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManagerSettings::JitterBufferPacketsBeforeRelaxingNeeded(uint32_t value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ChatManagerSettings::PerformanceCountersEnabled()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManagerSettings::PerformanceCountersEnabled(bool value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool m_CombineCaptureBuffersIntoSinglePacket;
@@ -112,34 +112,34 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
winrt::Microsoft::Xbox::GameChat::GameChatDiagnosticsTraceLevel ChatManagerSettings::DiagnosticsTraceLevel()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManagerSettings::DiagnosticsTraceLevel(winrt::Microsoft::Xbox::GameChat::GameChatDiagnosticsTraceLevel const& value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ChatManagerSettings::AutoMuteBadReputationUsers()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManagerSettings::AutoMuteBadReputationUsers(bool value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ChatManagerSettings::SessionStateUpdateRequestCoalesceDuration()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManagerSettings::SessionStateUpdateRequestCoalesceDuration(uint32_t value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ChatManagerSettings::MuteUserIfReputationIsBadCoalesceDuration()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatManagerSettings::MuteUserIfReputationIsBadCoalesceDuration(uint32_t value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -6,30 +6,30 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
{
winrt::Windows::Storage::Streams::IBuffer ChatPacketEventArgs::PacketBuffer()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ChatPacketEventArgs::SendReliable()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ChatPacketEventArgs::SendInOrder()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ChatPacketEventArgs::SendPacketToAllConnectedConsoles()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IInspectable ChatPacketEventArgs::UniqueTargetConsoleIdentifier()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatMessageType ChatPacketEventArgs::ChatMessageType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatUser ChatPacketEventArgs::ChatUser()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -6,34 +6,34 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
{
winrt::Microsoft::Xbox::GameChat::ChatPerformanceTime ChatPerformanceCounters::CaptureExecutionTime()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatPerformanceTime ChatPerformanceCounters::SendExecutionTime()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatPerformanceTime ChatPerformanceCounters::RenderExecutionTime()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatPerformanceTime ChatPerformanceCounters::AudioThreadExecutionTime()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatPerformanceTime ChatPerformanceCounters::AudioThreadPeriodTime()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatPerformanceTime ChatPerformanceCounters::IncomingPacketTime()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
double ChatPerformanceCounters::IncomingPacketBandwidthBitsPerSecond()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
double ChatPerformanceCounters::OutgoingPacketBandwidthBitsPerSecond()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -6,14 +6,14 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
{
double ChatPerformanceTime::MinTimeInMilliseconds()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
double ChatPerformanceTime::MaxTimeInMilliseconds()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
double ChatPerformanceTime::AverageTimeInMilliseconds()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -6,82 +6,82 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
{
hstring ChatUser::XboxUserId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IInspectable ChatUser::UniqueConsoleIdentifier()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatUserTalkingMode ChatUser::TalkingMode()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ChatUser::NumberOfPendingAudioPacketsToPlay()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ChatUser::DynamicNeededPacketCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Xbox::Chat::ChatRestriction ChatUser::RestrictionMode()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Xbox::System::IUser ChatUser::User()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ChatUser::IsLocal()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ChatUser::IsLocalUserMuted()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ChatUser::IsMuted()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<uint8_t> ChatUser::GetAllChannels()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatUser::GenerateTextMessage(hstring const& message, bool allowTextToSpeechConversion)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Xbox::Chat::ChatParticipantTypes ChatUser::ParticipantType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatUser::ParticipantType(winrt::Windows::Xbox::Chat::ChatParticipantTypes const& val)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
float ChatUser::Volume()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatUser::Volume(float val)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
float ChatUser::LocalRenderTargetVolume()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void ChatUser::LocalRenderTargetVolume(float val)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ChatUser::HasRequestedTranscription()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ChatUser::HasRequestedSynthesizedAudio()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -6,10 +6,10 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
{
hstring DebugMessageEventArgs::Message()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
int32_t DebugMessageEventArgs::ErrorCode()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -6,14 +6,14 @@ namespace winrt::Microsoft::Xbox::GameChat::implementation
{
hstring TextMessageReceivedEventArgs::Message()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatTextMessageType TextMessageReceivedEventArgs::ChatTextMessageType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::GameChat::ChatUser TextMessageReceivedEventArgs::ChatUser()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,80 +7,80 @@ namespace winrt::Microsoft::Xbox::Services::Achievements::implementation
hstring Achievement::Id()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Achievement::ServiceConfigurationId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Achievement::Name()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Achievements::AchievementTitleAssociation> Achievement::TitleAssociations()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Achievements::AchievementProgressState Achievement::ProgressState()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Achievements::AchievementProgression Achievement::Progression()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Achievements::AchievementMediaAsset> Achievement::MediaAssets()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<hstring> Achievement::PlatformsAvailableOn()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool Achievement::IsSecret()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Achievement::UnlockedDescription()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Achievement::LockedDescription()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Achievement::ProductId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Achievements::AchievementType Achievement::AchievementType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Achievements::AchievementParticipationType Achievement::ParticipationType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Achievements::AchievementTimeWindow Achievement::Available()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Achievements::AchievementReward> Achievement::Rewards()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan Achievement::EstimatedUnlockTime()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Achievement::DeepLink()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool Achievement::IsRevoked()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::Achievements::implementation
{
hstring AchievementMediaAsset::Name()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Achievements::AchievementMediaAssetType AchievementMediaAsset::MediaAssetType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring AchievementMediaAsset::Url()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Achievements::implementation
{
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Achievements::AchievementRequirement> AchievementProgression::Requirements()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime AchievementProgression::TimeUnlocked()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::Achievements::implementation
{
hstring AchievementRequirement::Id()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring AchievementRequirement::CurrentProgressValue()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring AchievementRequirement::TargetProgressValue()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,26 +7,26 @@ namespace winrt::Microsoft::Xbox::Services::Achievements::implementation
{
hstring AchievementReward::Name()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring AchievementReward::Description()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring AchievementReward::Data()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Achievements::AchievementRewardType AchievementReward::RewardType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::PropertyType AchievementReward::ValuePropertyType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Achievements::AchievementMediaAsset AchievementReward::MediaAsset()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,26 +7,26 @@ namespace winrt::Microsoft::Xbox::Services::Achievements::implementation
{
winrt::Windows::Foundation::IAsyncAction AchievementService::UpdateAchievementAsync(hstring xboxUserId, hstring achievementId, uint32_t percentComplete)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncAction AchievementService::UpdateAchievementAsync(hstring xboxUserId, uint32_t titleId, hstring serviceConfigurationId, hstring achievementId, uint32_t percentComplete)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<int32_t> AchievementService::TryUpdateAchievementAsync(hstring xboxUserId, hstring achievementId, uint32_t percentComplete)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<int32_t> AchievementService::TryUpdateAchievementAsync(hstring xboxUserId, uint32_t titleId, hstring serviceConfigurationId, hstring achievementId, uint32_t percentComplete)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Achievements::AchievementsResult> AchievementService::GetAchievementsForTitleIdAsync(hstring xboxUserId, uint32_t titleId, winrt::Microsoft::Xbox::Services::Achievements::AchievementType type, bool unlockedOnly, winrt::Microsoft::Xbox::Services::Achievements::AchievementOrderBy orderBy, uint32_t skipItems, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Achievements::Achievement> AchievementService::GetAchievementAsync(hstring xboxUserId, hstring serviceConfigurationId, hstring achievementId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Achievements::implementation
{
winrt::Windows::Foundation::DateTime AchievementTimeWindow::StartDate()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime AchievementTimeWindow::EndDate()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Achievements::implementation
{
hstring AchievementTitleAssociation::Name()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t AchievementTitleAssociation::TitleId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::Achievements::implementation
{
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Achievements::Achievement> AchievementsResult::Items()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Achievements::AchievementsResult> AchievementsResult::GetNextAsync(uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool AchievementsResult::HasNext()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,170 +7,170 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
hstring Club::Id()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubType Club::Type()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime Club::Created()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Club::Owner()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Club::TitleFamilyId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Club::TitleFamilyName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Club::ShortName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubProfile Club::Profile()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Club::GlyphImageUrl()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Club::BannerImageUrl()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool Club::IsClubSuspended()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime Club::SuspendedUntil()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring Club::FounderXuid()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t Club::FollowersCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t Club::PresenceCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t Club::PresenceTodayCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t Club::MembersCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t Club::ModeratorsCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t Club::RecommendedCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t Club::RequestedToJoinCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t Club::ReportCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t Club::ReporteItemsCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSettings Club::ActionSettings()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole> Club::ViewerRoles()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Clubs::ClubRoster> Club::GetRosterAsync()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubUserPresenceRecord>> Club::GetClubUserPresenceRecordsAsync()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncAction Club::RenameClubAsync(hstring newName)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole>> Club::GetRolesAsync(hstring xuid)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRoleRecord>> Club::GetRoleRecordsAsync()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRoleRecord>> Club::GetRoleRecordsAsync(hstring xuid)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Clubs::ClubPresenceCounts> Club::GetPresenceCountsAsync()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncAction Club::SetPresenceWithinClubAsync(winrt::Microsoft::Xbox::Services::Clubs::ClubUserPresence presence)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole>> Club::AddUserToClubAsync()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole>> Club::AddUserToClubAsync(hstring xuid)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole>> Club::RemoveUserFromClubAsync()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole>> Club::RemoveUserFromClubAsync(hstring xuid)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole>> Club::FollowClubAsync()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole>> Club::UnfollowClubAsync()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole>> Club::BanUserFromClubAsync(hstring xuid)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole>> Club::UnbanUserFromClubAsync(hstring xuid)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole>> Club::AddClubModeratorAsync(hstring xuid)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole>> Club::RemoveClubModeratorAsync(hstring xuid)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,18 +7,18 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
winrt::Microsoft::Xbox::Services::Clubs::ClubRole ClubActionSetting::RequiredRole()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRole> ClubActionSetting::AllowedValues()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ClubActionSetting::CanViewerChangeSetting()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ClubActionSetting::CanViewerAct()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,58 +7,58 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::PostToFeed()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::ViewFeed()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::WriteInChat()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::ViewChat()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::SetChatTopic()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::JoinLookingForGame()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::CreateLookingForGame()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::ViewLookingForGame()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::InviteOrAcceptJoinRequests()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::KickOrBan()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::ViewRoster()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::UpdateProfile()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::DeleteProfile()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubActionSetting ClubActionSettings::ViewProfile()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
bool ClubBooleanSetting::Value()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ClubBooleanSetting::CanViewerChangeSetting()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,18 +7,18 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
uint32_t ClubPresenceCounts::TotalCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ClubPresenceCounts::HereNow()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ClubPresenceCounts::HereToday()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ClubPresenceCounts::InGameNow()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,70 +7,70 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
winrt::Microsoft::Xbox::Services::Clubs::ClubStringSetting ClubProfile::Name()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubStringSetting ClubProfile::Description()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubBooleanSetting ClubProfile::MatureContentEnabled()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubBooleanSetting ClubProfile::WatchClubTitlesOnly()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubBooleanSetting ClubProfile::IsSearchable()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubBooleanSetting ClubProfile::IsRecommendable()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubBooleanSetting ClubProfile::RequestToJoinEnabled()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubBooleanSetting ClubProfile::LeaveEnabled()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubBooleanSetting ClubProfile::TransferOwnershipEnabled()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubStringSetting ClubProfile::DisplayImageUrl()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubStringSetting ClubProfile::BackgroundImageUrl()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubStringMultiSetting ClubProfile::Tags()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubStringSetting ClubProfile::PreferredLocale()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubStringMultiSetting ClubProfile::AssociatedTitles()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubStringSetting ClubProfile::PrimaryColor()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubStringSetting ClubProfile::SecondayColor()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubStringSetting ClubProfile::TertiaryColor()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
winrt::Microsoft::Xbox::Services::Clubs::Club ClubRecommendation::RecommendedClub()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<hstring> ClubRecommendation::Reasons()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,18 +7,18 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
hstring ClubRoleRecord::Xuid()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubRole ClubRoleRecord::Role()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ClubRoleRecord::ActorXuid()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime ClubRoleRecord::CreatedDate()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,18 +7,18 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRoleRecord> ClubRoster::Moderators()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRoleRecord> ClubRoster::RequestedToJoin()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRoleRecord> ClubRoster::Recommended()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRoleRecord> ClubRoster::Banned()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,34 +7,34 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
hstring ClubSearchAutoComplete::Id()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ClubSearchAutoComplete::Name()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ClubSearchAutoComplete::Description()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ClubSearchAutoComplete::DisplayImageUrl()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
double ClubSearchAutoComplete::Score()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ClubSearchAutoComplete::SuggestedQueryText()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<hstring> ClubSearchAutoComplete::Tags()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<hstring> ClubSearchAutoComplete::AssociatedTitles()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
hstring ClubSearchFacetResult::Value()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ClubSearchFacetResult::Count()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
winrt::Windows::Foundation::Collections::IVectorView<hstring> ClubStringMultiSetting::Values()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<hstring> ClubStringMultiSetting::AllowedValues()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ClubStringMultiSetting::CanViewerChangeSetting()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
hstring ClubStringSetting::Value()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<hstring> ClubStringSetting::AllowedValues()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ClubStringSetting::CanViewerChangeSetting()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
hstring ClubUserPresenceRecord::Xuid()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime ClubUserPresenceRecord::LastSeen()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Clubs::ClubUserPresence ClubUserPresenceRecord::LastSeenState()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
winrt::Windows::Foundation::Collections::IVectorView<hstring> ClubsOwnedResult::ClubIds()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ClubsOwnedResult::RemainingClubs()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::Club> ClubsSearchResult::Clubs()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IMapView<hstring, winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubSearchFacetResult>> ClubsSearchResult::SearchFacetResults()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,42 +7,42 @@ namespace winrt::Microsoft::Xbox::Services::Clubs::implementation
{
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Clubs::Club> ClubsService::GetClubAsync(hstring clubId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::Club>> ClubsService::GetClubsAsync(winrt::Windows::Foundation::Collections::IVectorView<hstring> clubIds)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Clubs::ClubsOwnedResult> ClubsService::GetClubsOwnedAsync()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Clubs::Club> ClubsService::CreateClubAsync(hstring name, winrt::Microsoft::Xbox::Services::Clubs::ClubType type, hstring titleFamilyId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncAction ClubsService::DeleteClubAsync(hstring clubId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::Club>> ClubsService::GetClubAssociationsAsync()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::Club>> ClubsService::GetClubAssociationsAsync(hstring xuid)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubRecommendation>> ClubsService::GetClubRecommendationsAsync()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Clubs::ClubsSearchResult> ClubsService::SearchClubsAsync(hstring queryString, winrt::Windows::Foundation::Collections::IVectorView<hstring> titleIds, winrt::Windows::Foundation::Collections::IVectorView<hstring> tags)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Clubs::ClubSearchAutoComplete>> ClubsService::SuggestClubsAsync(hstring queryString, winrt::Windows::Foundation::Collections::IVectorView<hstring> titleIds, winrt::Windows::Foundation::Collections::IVectorView<hstring> tags)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,26 +7,26 @@ namespace winrt::Microsoft::Xbox::Services::ContextualSearch::implementation
{
hstring ContextualSearchBroadcast::XboxUserId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContextualSearchBroadcast::Provider()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContextualSearchBroadcast::BroadcasterIdFromProvider()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t ContextualSearchBroadcast::Viewers()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime ContextualSearchBroadcast::StartedDate()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IMapView<hstring, hstring> ContextualSearchBroadcast::CurrentStats()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,42 +7,42 @@ namespace winrt::Microsoft::Xbox::Services::ContextualSearch::implementation
{
hstring ContextualSearchConfiguredStat::Name()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContextualSearchConfiguredStat::DataType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchStatVisibility ContextualSearchConfiguredStat::Visibility()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContextualSearchConfiguredStat::DisplayName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ContextualSearchConfiguredStat::CanBeFiltered()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool ContextualSearchConfiguredStat::CanBeSorted()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchStatVisibility ContextualSearchConfiguredStat::DisplayType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IMapView<hstring, hstring> ContextualSearchConfiguredStat::ValueToDisplayName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t ContextualSearchConfiguredStat::RangeMin()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t ContextualSearchConfiguredStat::RangeMax()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,42 +7,42 @@ namespace winrt::Microsoft::Xbox::Services::ContextualSearch::implementation
{
hstring ContextualSearchGameClip::ClipName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t ContextualSearchGameClip::DurationInSeconds()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContextualSearchGameClip::GameClipId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContextualSearchGameClip::GameClipLocale()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchGameClipUriInfo> ContextualSearchGameClip::GameClipUris()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchGameClipThumbnail> ContextualSearchGameClip::Thumbnails()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchGameClipType ContextualSearchGameClip::GameClipType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t ContextualSearchGameClip::Views()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContextualSearchGameClip::XboxUserId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchGameClipStat> ContextualSearchGameClip::Stats()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,22 +7,22 @@ namespace winrt::Microsoft::Xbox::Services::ContextualSearch::implementation
{
hstring ContextualSearchGameClipStat::Name()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContextualSearchGameClipStat::Value()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContextualSearchGameClipStat::MinValue()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContextualSearchGameClipStat::MaxValue()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContextualSearchGameClipStat::DeltaValue()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::ContextualSearch::implementation
{
winrt::Windows::Foundation::Uri ContextualSearchGameClipThumbnail::Url()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t ContextualSearchGameClipThumbnail::FileSize()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchGameClipThumbnailType ContextualSearchGameClipThumbnail::ThumbnailType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -6,18 +6,18 @@ namespace winrt::Microsoft::Xbox::Services::ContextualSearch::implementation
{
winrt::Windows::Foundation::Uri ContextualSearchGameClipUriInfo::Url()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t ContextualSearchGameClipUriInfo::FileSize()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchGameClipUriType ContextualSearchGameClipUriInfo::UriType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime ContextualSearchGameClipUriInfo::Expiration()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -6,10 +6,10 @@ namespace winrt::Microsoft::Xbox::Services::ContextualSearch::implementation
{
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchGameClipsResult> ContextualSearchGameClipsResult::GetNextAsync(uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchGameClip> ContextualSearchGameClipsResult::Items()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -6,26 +6,26 @@ namespace winrt::Microsoft::Xbox::Services::ContextualSearch::implementation
{
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchConfiguredStat>> ContextualSearchService::GetConfigurationAsync(uint32_t titleId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchBroadcast>> ContextualSearchService::GetBroadcastsAsync(uint32_t titleId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchBroadcast>> ContextualSearchService::GetBroadcastsAsync(uint32_t titleId, uint32_t skipItems, uint32_t maxItems, hstring orderByStatName, bool orderAscending, hstring searchQuery)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchBroadcast>> ContextualSearchService::GetBroadcastsAsync(uint32_t titleId, uint32_t skipItems, uint32_t maxItems, hstring orderByStatName, bool orderAscending, hstring filterStatName, winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchFilterOperator filterOperator, hstring filterStatValue)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchGameClipsResult> ContextualSearchService::GetGameClipsAsync(uint32_t titleId, uint32_t skipItems, uint32_t maxItems, hstring orderByStatName, bool orderAscending, hstring filterStatName, winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchFilterOperator filterOperator, hstring filterStatValue)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::ContextualSearch::ContextualSearchGameClipsResult> ContextualSearchService::GetGameClipsAsync(uint32_t titleId, uint32_t skipItems, uint32_t maxItems, hstring orderByStatName, bool orderAscending, hstring searchQuery)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -6,14 +6,14 @@ namespace winrt::Microsoft::Xbox::Services::EntertainmentProfile::implementation
{
bool EntertainmentProfileListContainsItemResult::IsContained()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring EntertainmentProfileListContainsItemResult::ProviderId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring EntertainmentProfileListContainsItemResult::Provider()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,6 +7,6 @@ namespace winrt::Microsoft::Xbox::Services::EntertainmentProfile::implementation
{
winrt::Microsoft::Xbox::Services::EntertainmentProfile::EntertainmentProfileListXboxOnePins EntertainmentProfileListService::XboxOnePins()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::EntertainmentProfile::implementation
{
winrt::Windows::Foundation::IAsyncAction EntertainmentProfileListXboxOnePins::AddItemAsync(winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType itemType, hstring providerId, hstring provider, winrt::Windows::Foundation::Uri imageUrl, winrt::Windows::Foundation::Uri providerLogoImageUrl, hstring title, hstring subTitle, hstring locale)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncAction EntertainmentProfileListXboxOnePins::RemoveItemAsync(hstring providerId, hstring provider)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::EntertainmentProfile::EntertainmentProfileListContainsItemResult> EntertainmentProfileListXboxOnePins::ContainsItemAsync(hstring providerId, hstring provider)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,26 +7,26 @@ namespace winrt::Microsoft::Xbox::Services::GameServerPlatform::implementation
{
winrt::Microsoft::Xbox::Services::GameServerPlatform::GameServerFulfillmentState AllocationResult::FulfillmentState()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring AllocationResult::HostName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring AllocationResult::SessionHostId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring AllocationResult::Region()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::GameServerPlatform::GameServerPortMapping> AllocationResult::PortMappings()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring AllocationResult::SecureDeviceAddress()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,26 +7,26 @@ namespace winrt::Microsoft::Xbox::Services::GameServerPlatform::implementation
{
winrt::Windows::Foundation::TimeSpan ClusterResult::PollInterval()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::GameServerPlatform::GameServerFulfillmentState ClusterResult::FulfillmentState()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ClusterResult::HostName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ClusterResult::Region()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::GameServerPlatform::GameServerPortMapping> ClusterResult::PortMappings()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ClusterResult::SecureDeviceAddress()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,38 +7,38 @@ namespace winrt::Microsoft::Xbox::Services::GameServerPlatform::implementation
{
uint64_t GameServerImageSet::MinPlayers()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t GameServerImageSet::MaxPlayers()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameServerImageSet::Id()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameServerImageSet::Name()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t GameServerImageSet::SelectionOrder()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameServerImageSet::SchemaContent()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameServerImageSet::SchemaName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameServerImageSet::SchemaId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IMapView<hstring, hstring> GameServerImageSet::Tags()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::GameServerPlatform::implementation
{
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::GameServerPlatform::GameVariant> GameServerMetadataResult::GameVariants()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::GameServerPlatform::GameServerImageSet> GameServerMetadataResult::GameServerImageSets()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,34 +7,34 @@ namespace winrt::Microsoft::Xbox::Services::GameServerPlatform::implementation
{
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::GameServerPlatform::ClusterResult> GameServerPlatformService::AllocateClusterAsync(uint32_t gameServerTitleId, hstring serviceConfigurationId, hstring sessionTemplateName, hstring sessionName, bool abortIfQueued)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::GameServerPlatform::ClusterResult> GameServerPlatformService::AllocateClusterInlineAsync(uint32_t gameServerTitleId, hstring serviceConfigurationId, hstring sandboxId, hstring ticketId, hstring gsiSetId, hstring gameVariantId, uint64_t maxAllowedPlayers, hstring location, bool abortIfQueued)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::GameServerPlatform::GameServerTicketStatus> GameServerPlatformService::GetTicketStatusAsync(uint32_t gameServerTitleId, hstring ticketId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::GameServerPlatform::GameServerMetadataResult> GameServerPlatformService::GetGameServerMetadataAsync(uint32_t titleId, uint32_t maxAllowedPlayers, bool publisherOnly, uint32_t maxVariants, hstring locale)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::GameServerPlatform::GameServerMetadataResult> GameServerPlatformService::GetGameServerMetadataAsync(uint32_t titleId, uint32_t maxAllowedPlayers, bool publisherOnly, uint32_t maxVariants, hstring locale, winrt::Windows::Foundation::Collections::IMapView<hstring, hstring> filterTags)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::GameServerPlatform::QualityOfServiceServer>> GameServerPlatformService::GetQualityOfServiceServersAsync()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::GameServerPlatform::AllocationResult> GameServerPlatformService::AllocateSessionHost(uint32_t gameServerTitleId, winrt::Windows::Foundation::Collections::IVectorView<hstring> locations, hstring sessionId, hstring cloudGameId, hstring gameModeId, hstring sessionCookie)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::GameServerPlatform::AllocationResult> GameServerPlatformService::GetSessionHostAllocationStatus(uint32_t gameServerTitleId, hstring sessionId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::GameServerPlatform::implementation
{
hstring GameServerPortMapping::PortName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t GameServerPortMapping::InternalPortNumber()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t GameServerPortMapping::ExternalPortNumber()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,42 +7,42 @@ namespace winrt::Microsoft::Xbox::Services::GameServerPlatform::implementation
{
hstring GameServerTicketStatus::TicketId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameServerTicketStatus::ClusterId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t GameServerTicketStatus::TitleId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameServerTicketStatus::HostName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::GameServerPlatform::GameServerHostStatus GameServerTicketStatus::Status()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameServerTicketStatus::Description()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameServerTicketStatus::SecureContext()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::GameServerPlatform::GameServerPortMapping> GameServerTicketStatus::PortMappings()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameServerTicketStatus::GameHostId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameServerTicketStatus::Region()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,30 +7,30 @@ namespace winrt::Microsoft::Xbox::Services::GameServerPlatform::implementation
{
hstring GameVariant::Id()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameVariant::Name()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool GameVariant::IsPublisher()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t GameVariant::Rank()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameVariant::SchemaContent()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameVariant::SchemaName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring GameVariant::SchemaId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::GameServerPlatform::implementation
{
hstring QualityOfServiceServer::ServerFullQualifiedDomainName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring QualityOfServiceServer::SecureDeviceAddressBase64()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring QualityOfServiceServer::TargetLocation()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -6,17 +6,17 @@ namespace winrt::Microsoft::Xbox::Services::implementation
{
hstring HttpCallRequestMessage::RequestMessageString()
{
Logger::NotImplemented();
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
com_array<uint8_t> HttpCallRequestMessage::RequestMessageVector()
{
Logger::NotImplemented();
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::HttpRequestMessageType HttpCallRequestMessage::GetHttpRequestMessageType()
{
Logger::NotImplemented();
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::Leaderboard::implementation
{
hstring LeaderboardColumn::DisplayName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring LeaderboardColumn::StatisticName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::PropertyType LeaderboardColumn::StatisticType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,54 +7,54 @@ namespace winrt::Microsoft::Xbox::Services::Leaderboard::implementation
{
bool LeaderboardQuery::SkipResultToMe()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void LeaderboardQuery::SkipResultToMe(bool value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t LeaderboardQuery::SkipResultToRank()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void LeaderboardQuery::SkipResultToRank(uint32_t value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t LeaderboardQuery::MaxItems()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void LeaderboardQuery::MaxItems(uint32_t value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Leaderboard::SortOrder LeaderboardQuery::Order()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void LeaderboardQuery::Order(winrt::Microsoft::Xbox::Services::Leaderboard::SortOrder const& value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t LeaderboardQuery::CallbackId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void LeaderboardQuery::CallbackId(uint64_t value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring LeaderboardQuery::StatName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring LeaderboardQuery::SocialGroup()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool LeaderboardQuery::HasNext()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,30 +7,30 @@ namespace winrt::Microsoft::Xbox::Services::Leaderboard::implementation
{
hstring LeaderboardResult::DisplayName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t LeaderboardResult::TotalRowCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardColumn> LeaderboardResult::Columns()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardRow> LeaderboardResult::Rows()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool LeaderboardResult::HasNext()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardResult::GetNextAsync(uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardQuery LeaderboardResult::GetNextQuery()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,22 +7,22 @@ namespace winrt::Microsoft::Xbox::Services::Leaderboard::implementation
{
hstring LeaderboardRow::Gamertag()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring LeaderboardRow::XboxUserId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
double LeaderboardRow::Percentile()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t LeaderboardRow::Rank()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<hstring> LeaderboardRow::Values()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,66 +7,66 @@ namespace winrt::Microsoft::Xbox::Services::Leaderboard::implementation
{
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardAsync(hstring serviceConfigurationId, hstring leaderboardName)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardAsync(hstring serviceConfigurationId, hstring leaderboardName, uint32_t skipToRank, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardAsync(hstring serviceConfigurationId, hstring leaderboardName, hstring xuid, hstring socialGroup, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardAsync(hstring serviceConfigurationId, hstring leaderboardName, hstring xuid, hstring socialGroup, uint32_t skipToRank, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardWithAdditionalColumnsAsync(hstring serviceConfigurationId, hstring leaderboardName, winrt::Windows::Foundation::Collections::IVectorView<hstring> additionalColumns)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardWithAdditionalColumnsAsync(hstring serviceConfigurationId, hstring leaderboardName, hstring xuid, hstring socialGroup, winrt::Windows::Foundation::Collections::IVectorView<hstring> additionalColumns, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardWithAdditionalColumnsAsync(hstring serviceConfigurationId, hstring leaderboardName, uint32_t skipToRank, winrt::Windows::Foundation::Collections::IVectorView<hstring> additionalColumns, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardWithAdditionalColumnsAsync(hstring serviceConfigurationId, hstring leaderboardName, hstring xuid, hstring socialGroup, uint32_t skipToRank, winrt::Windows::Foundation::Collections::IVectorView<hstring> additionalColumns, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardWithSkipToUserAsync(hstring serviceConfigurationId, hstring leaderboardName, hstring skipToXboxUserId, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardWithSkipToUserAsync(hstring serviceConfigurationId, hstring leaderboardName, hstring xuid, hstring socialGroup, hstring skipToXboxUserId, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardWithSkipToUserWithAdditionalColumnsAsync(hstring serviceConfigurationId, hstring leaderboardName, hstring skipToXboxUserId, winrt::Windows::Foundation::Collections::IVectorView<hstring> additionalColumns, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardWithSkipToUserWithAdditionalColumnsAsync(hstring serviceConfigurationId, hstring leaderboardName, hstring xuid, hstring socialGroup, hstring skipToXboxUserId, winrt::Windows::Foundation::Collections::IVectorView<hstring> additionalColumns, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardForSocialGroupAsync(hstring xboxUserId, hstring serviceConfigurationId, hstring statisticName, hstring socialGroup, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardForSocialGroupAsync(hstring xboxUserId, hstring serviceConfigurationId, hstring statisticName, hstring socialGroup, hstring sortOrder, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardForSocialGroupWithSkipToRankAsync(hstring xboxUserId, hstring serviceConfigurationId, hstring statisticName, hstring socialGroup, uint32_t skipToRank, hstring sortOrder, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Leaderboard::LeaderboardResult> LeaderboardService::GetLeaderboardForSocialGroupWithSkipToUserAsync(hstring xboxUserId, hstring serviceConfigurationId, hstring statisticName, hstring socialGroup, hstring skipToXboxUserId, hstring sortOrder, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,18 +7,18 @@ namespace winrt::Microsoft::Xbox::Services::Marketplace::implementation
{
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Marketplace::CatalogItem> BrowseCatalogResult::Items()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t BrowseCatalogResult::TotalCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::BrowseCatalogResult> BrowseCatalogResult::GetNextAsync(uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool BrowseCatalogResult::HasNext()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,50 +7,50 @@ namespace winrt::Microsoft::Xbox::Services::Marketplace::implementation
{
winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType CatalogItem::MediaItemType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItem::Id()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItem::Name()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItem::ReducedName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t CatalogItem::TitleId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime CatalogItem::ReleaseDate()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItem::ProductId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItem::SandboxId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool CatalogItem::IsBundle()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool CatalogItem::IsPartOfAnyBundle()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Marketplace::CatalogItemImage> CatalogItem::Images()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<hstring> CatalogItem::AvailabilityContentIds()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,66 +7,66 @@ namespace winrt::Microsoft::Xbox::Services::Marketplace::implementation
{
hstring CatalogItemAvailability::ContentId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<hstring> CatalogItemAvailability::AcceptablePaymentInstrumentTypes()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemAvailability::AvailabilityTitle()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemAvailability::AvailabilityDescription()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemAvailability::CurrencyCode()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemAvailability::DisplayPrice()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemAvailability::DisplayListPrice()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemAvailability::DistributionType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool CatalogItemAvailability::IsPurchasable()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
double CatalogItemAvailability::ListPrice()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
double CatalogItemAvailability::Price()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t CatalogItemAvailability::ConsumableQuantity()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemAvailability::PromotionalText()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemAvailability::SignedOffer()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemAvailability::OfferId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemAvailability::OfferDisplayDataJson()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,54 +7,54 @@ namespace winrt::Microsoft::Xbox::Services::Marketplace::implementation
{
winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType CatalogItemDetails::MediaItemType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemDetails::Id()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemDetails::Name()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemDetails::ReducedName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemDetails::Description()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t CatalogItemDetails::TitleId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime CatalogItemDetails::ReleaseDate()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemDetails::ProductId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemDetails::SandboxId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool CatalogItemDetails::IsBundle()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool CatalogItemDetails::IsPartOfAnyBundle()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Marketplace::CatalogItemImage> CatalogItemDetails::Images()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Marketplace::CatalogItemAvailability> CatalogItemDetails::Availabilities()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,26 +7,26 @@ namespace winrt::Microsoft::Xbox::Services::Marketplace::implementation
{
hstring CatalogItemImage::Id()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Uri CatalogItemImage::ResizeUrl()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<hstring> CatalogItemImage::Purposes()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring CatalogItemImage::Purpose()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t CatalogItemImage::Height()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t CatalogItemImage::Width()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::Marketplace::implementation
{
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::BrowseCatalogResult> CatalogService::BrowseCatalogAsync(hstring parentId, winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType parentMediaType, winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType childMediaType, winrt::Microsoft::Xbox::Services::Marketplace::CatalogSortOrder orderBy, uint32_t skipItems, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::BrowseCatalogResult> CatalogService::BrowseCatalogBundlesAsync(hstring parentId, winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType parentMediaType, hstring productId, winrt::Microsoft::Xbox::Services::Marketplace::BundleRelationshipType relationship, uint32_t skipItems, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Marketplace::CatalogItemDetails>> CatalogService::GetCatalogItemDetailsAsync(winrt::Windows::Foundation::Collections::IVectorView<hstring> productIds)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::Marketplace::implementation
{
winrt::Windows::Foundation::Uri ConsumeInventoryItemResult::ConsumableUrl()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t ConsumeInventoryItemResult::ConsumableBalance()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring ConsumeInventoryItemResult::TransactionId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,54 +7,54 @@ namespace winrt::Microsoft::Xbox::Services::Marketplace::implementation
{
winrt::Windows::Foundation::Uri InventoryItem::Url()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemState InventoryItem::InventoryItemState()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType InventoryItem::MediaItemType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring InventoryItem::ProductId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t InventoryItem::TitleId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<hstring> InventoryItem::ContainerIds()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime InventoryItem::RightsObtainedDate()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime InventoryItem::StartDate()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime InventoryItem::EndDate()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Uri InventoryItem::ConsumableUrl()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t InventoryItem::ConsumableBalance()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool InventoryItem::IsTrialEntitlement()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan InventoryItem::TrialTimeRemaining()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,18 +7,18 @@ namespace winrt::Microsoft::Xbox::Services::Marketplace::implementation
{
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItem> InventoryItemsResult::Items()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t InventoryItemsResult::TotalItems()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemsResult> InventoryItemsResult::GetNextAsync(uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool InventoryItemsResult::HasNext()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,50 +7,50 @@ namespace winrt::Microsoft::Xbox::Services::Marketplace::implementation
{
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemsResult> InventoryService::GetInventoryItemsAsync(winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType mediaItemType)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemsResult> InventoryService::GetInventoryItemsAsync(winrt::Windows::Foundation::Collections::IVectorView<hstring> productIds, bool expandSatisfyingEntitlements)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemsResult> InventoryService::GetInventoryItemsAsync(winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType mediaItemType, bool expandSatisfyingEntitlements, bool includeAllItemStatesAndAvailabilities)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemsResult> InventoryService::GetInventoryItemsAsync(winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType mediaItemType, winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemState inventoryItemState, winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemAvailability inventoryItemAvailability, hstring inventoryItemContainerId, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemsResult> InventoryService::GetInventoryItemsAsync(winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType mediaItemType, winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemState inventoryItemState, winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemAvailability inventoryItemAvailability, hstring inventoryItemContainerId, uint32_t maxItems, bool expandSatisfyingEntitlements)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemsResult> InventoryService::GetInventoryItemsForAllUsersAsync(winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType mediaItemType)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemsResult> InventoryService::GetInventoryItemsForAllUsersAsync(winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType mediaItemType, bool expandSatisfyingEntitlements, bool includeAllItemStatesAndAvailabilities)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemsResult> InventoryService::GetInventoryItemsForAllUsersAsync(winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType mediaItemType, winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemState inventoryItemState, winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemAvailability inventoryItemAvailability, hstring inventoryItemContainerId, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemsResult> InventoryService::GetInventoryItemsForAllUsersAsync(winrt::Microsoft::Xbox::Services::Marketplace::MediaItemType mediaItemType, winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemState inventoryItemState, winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemAvailability inventoryItemAvailability, hstring inventoryItemContainerId, uint32_t maxItems, bool expandSatisfyingEntitlements)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItemsResult> InventoryService::GetInventoryItemsForAllUsersAsync(winrt::Windows::Foundation::Collections::IVectorView<hstring> productIds, bool expandSatisfyingEntitlements)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::InventoryItem> InventoryService::GetInventoryItemAsync(winrt::Microsoft::Xbox::Services::Marketplace::InventoryItem inventoryItem)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Marketplace::ConsumeInventoryItemResult> InventoryService::ConsumeInventoryItemAsync(winrt::Microsoft::Xbox::Services::Marketplace::InventoryItem inventoryItem, uint32_t quantityToConsume, hstring transactionId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Matchmaking::implementation
{
hstring CreateMatchTicketResponse::MatchTicketId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan CreateMatchTicketResponse::EstimatedWaitTime()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,14 +7,14 @@ namespace winrt::Microsoft::Xbox::Services::Matchmaking::implementation
{
hstring HopperStatisticsResponse::HopperName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan HopperStatisticsResponse::EstimatedWaitTime()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t HopperStatisticsResponse::PlayersWaitingToMatch()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,26 +7,26 @@ namespace winrt::Microsoft::Xbox::Services::Matchmaking::implementation
{
winrt::Microsoft::Xbox::Services::Matchmaking::TicketStatus MatchTicketDetailsResponse::MatchStatus()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan MatchTicketDetailsResponse::EstimatedWaitTime()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Matchmaking::PreserveSessionMode MatchTicketDetailsResponse::PreserveSession()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionReference MatchTicketDetailsResponse::TicketSession()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionReference MatchTicketDetailsResponse::TargetSession()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MatchTicketDetailsResponse::TicketAttributes()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,18 +7,18 @@ namespace winrt::Microsoft::Xbox::Services::Matchmaking::implementation
{
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Matchmaking::CreateMatchTicketResponse> MatchmakingService::CreateMatchTicketAsync(winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionReference ticketSessionReference, hstring matchmakingServiceConfigurationId, hstring hopperName, winrt::Windows::Foundation::TimeSpan ticketTimeout, winrt::Microsoft::Xbox::Services::Matchmaking::PreserveSessionMode preserveSession, hstring ticketAttributesJson)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncAction MatchmakingService::DeleteMatchTicketAsync(hstring serviceConfigurationId, hstring hopperName, hstring ticketId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Matchmaking::MatchTicketDetailsResponse> MatchmakingService::GetMatchTicketDetailsAsync(hstring serviceConfigurationId, hstring hopperName, hstring ticketId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IAsyncOperation<winrt::Microsoft::Xbox::Services::Matchmaking::HopperStatisticsResponse> MatchmakingService::GetHopperStatisticsAsync(hstring serviceConfigurationId, hstring hopperName)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MatchStatus FindMatchCompletedEventArgs::MatchStatus()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerMeasurementFailure FindMatchCompletedEventArgs::InitializationFailureCause()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,6 +7,6 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember HostChangedEventArgs::HostMember()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,6 +7,6 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
hstring JoinLobbyCompletedEventArgs::InvitedXboxUserId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,6 +7,6 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember> MemberJoinedEventArgs::Members()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,6 +7,6 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember> MemberLeftEventArgs::Members()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember MemberPropertyChangedEventArgs::Member()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MemberPropertyChangedEventArgs::Properties()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,26 +7,26 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
int32_t MultiplayerEvent::ErrorCode()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerEvent::ErrorMessage()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::IInspectable MultiplayerEvent::Context()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerEventType MultiplayerEvent::EventType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerEventArgs MultiplayerEvent::EventArgs()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerSessionType MultiplayerEvent::SessionType()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,50 +7,50 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
hstring MultiplayerGameSession::CorrelationId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionReference MultiplayerGameSession::SessionReference()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_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();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember MultiplayerGameSession::Host()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerGameSession::Properties()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionConstants MultiplayerGameSession::SessionConstants()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_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();
LOG_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();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerGameSession::IsHost(hstring const& xboxUserId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_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();
LOG_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();
LOG_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();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,78 +7,78 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
hstring MultiplayerLobbySession::CorrelationId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionReference MultiplayerLobbySession::SessionReference()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember> MultiplayerLobbySession::LocalMembers()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember> MultiplayerLobbySession::Members()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember MultiplayerLobbySession::Host()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerLobbySession::Properties()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionConstants MultiplayerLobbySession::SessionConstants()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Tournaments::TournamentTeamResult MultiplayerLobbySession::LastTournamentTeamResult()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerLobbySession::AddLocalUser(winrt::Windows::Xbox::System::User const& user)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerLobbySession::RemoveLocalUser(winrt::Windows::Xbox::System::User const& user)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerLobbySession::SetLocalMemberProperties(winrt::Windows::Xbox::System::User const& user, hstring const& name, hstring const& valueJson, winrt::Windows::Foundation::IInspectable const& context)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerLobbySession::DeleteLocalMemberProperties(winrt::Windows::Xbox::System::User const& user, hstring const& name, winrt::Windows::Foundation::IInspectable const& context)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerLobbySession::SetLocalMemberConnectionAddress(winrt::Windows::Xbox::System::User const& user, hstring const& connectionAddress, winrt::Windows::Foundation::IInspectable const& context)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerLobbySession::IsHost(hstring const& xboxUserId)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerLobbySession::SetProperties(hstring const& name, hstring const& valueJson, winrt::Windows::Foundation::IInspectable const& context)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerLobbySession::SetSynchronizedProperties(hstring const& name, hstring const& valueJson, winrt::Windows::Foundation::IInspectable const& context)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerLobbySession::SetSynchronizedHost(winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember const& gameHost, winrt::Windows::Foundation::IInspectable const& context)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerLobbySession::InviteFriends(winrt::Windows::Xbox::System::User const& user, hstring const& contextStringId, hstring const& customActivationContext)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerLobbySession::InviteUsers(winrt::Windows::Xbox::System::User const& user, winrt::Windows::Foundation::Collections::IVectorView<hstring> const& xboxUserIds, hstring const& contextStringId, hstring const& customActivationContext)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,94 +7,94 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerManager MultiplayerManager::SingletonInstance()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::Initialize(hstring const& lobbySessionTemplateName)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::FindMatch(hstring const& hopperName, hstring const& attributes, winrt::Windows::Foundation::TimeSpan const& timeout)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::CancelMatch()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::JoinLobby(hstring const& handleId, winrt::Windows::Xbox::System::User const& user)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::JoinLobby(hstring const& handleId, winrt::Windows::Foundation::Collections::IVectorView<winrt::Windows::Xbox::System::User> const& users)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::JoinLobby(winrt::Windows::ApplicationModel::Activation::IProtocolActivatedEventArgs const& eventArgs, winrt::Windows::Foundation::Collections::IVectorView<winrt::Windows::Xbox::System::User> const& users)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::JoinLobby(winrt::Windows::ApplicationModel::Activation::IProtocolActivatedEventArgs const& eventArgs, winrt::Windows::Xbox::System::User const& user)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::InvitePartyToGame()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::JoinGameFromLobby(hstring const& sessionTemplateName)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::JoinGame(hstring const& sessionName, hstring const& sessionTemplateName)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::JoinGame(hstring const& sessionName, hstring const& sessionTemplateName, winrt::Windows::Foundation::Collections::IVectorView<hstring> const& xboxUserIds)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::LeaveGame()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerEvent> MultiplayerManager::DoWork()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MatchStatus MultiplayerManager::MatchStatus()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan MultiplayerManager::EstimatedMatchWaitTime()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerLobbySession MultiplayerManager::LobbySession()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerGameSession MultiplayerManager::GameSession()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::Manager::Joinability MultiplayerManager::Joinability()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::SetJoinInProgress(winrt::Microsoft::Xbox::Services::Multiplayer::Manager::Joinability const& value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerManager::AutoFillMembersDuringMatchmaking()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::AutoFillMembersDuringMatchmaking(bool value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerManager::SetQualityOfServiceMeasurements(winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerQualityOfServiceMeasurements> const& measurements)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,50 +7,50 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
uint32_t MultiplayerMember::MemberId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerMember::TeamId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerMember::XboxUserId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerMember::DebugGamertag()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerMember::IsLocal()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerMember::IsInLobby()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerMember::IsInGame()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionMemberStatus MultiplayerMember::Status()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerMember::ConnectionAddress()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerMember::Properties()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerMember::IsMemberOnSameDevice(winrt::Microsoft::Xbox::Services::Multiplayer::Manager::MultiplayerMember const& member)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerMember::_DeviceToken()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,6 +7,6 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
winrt::Windows::Foundation::Collections::IMapView<hstring, hstring> PerformQosMeasurementsEventArgs::AddressToDeviceTokens()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,6 +7,6 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
hstring SessionPropertyChangedEventArgs::Properties()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,6 +7,6 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
winrt::Windows::Foundation::DateTime TournamentGameSessionReadyEventArgs::StartTime()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
winrt::Microsoft::Xbox::Services::Tournaments::TournamentRegistrationState TournamentRegistrationStateChangedEventArgs::RegistrationState()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Tournaments::TournamentRegistrationReason TournamentRegistrationStateChangedEventArgs::RegistrationReason()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,6 +7,6 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
hstring UserAddedEventArgs::XboxUserId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,6 +7,6 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::Manager::implementation
{
hstring UserRemovedEventArgs::XboxUserId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,42 +7,42 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::implementation
{
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionReference MultiplayerActivityDetails::SessionReference()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerActivityDetails::HandleId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t MultiplayerActivityDetails::TitleId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionVisibility MultiplayerActivityDetails::Visibility()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionRestriction MultiplayerActivityDetails::JoinRestriction()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerActivityDetails::Closed()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerActivityDetails::OwnerXboxUserId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t MultiplayerActivityDetails::MaxMembersCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t MultiplayerActivityDetails::MembersCount()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerActivityDetails::CustomSessionPropertiesJson()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,86 +7,86 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::implementation
{
MultiplayerGetSessionsRequest::MultiplayerGetSessionsRequest(hstring const& serviceConfigurationId, uint32_t maxItems)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerGetSessionsRequest::ServiceConfigurationId()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t MultiplayerGetSessionsRequest::MaxItems()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerGetSessionsRequest::IncludePrivateSessions()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerGetSessionsRequest::IncludePrivateSessions(bool value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerGetSessionsRequest::IncludeReservations()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerGetSessionsRequest::IncludeReservations(bool value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerGetSessionsRequest::IncludeInactiveSessions()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerGetSessionsRequest::IncludeInactiveSessions(bool value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerGetSessionsRequest::XboxUserIdFilter()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerGetSessionsRequest::XboxUserIdFilter(hstring const& value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::Collections::IVectorView<hstring> MultiplayerGetSessionsRequest::XboxUserIdsFilter()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerGetSessionsRequest::XboxUserIdsFilter(winrt::Windows::Foundation::Collections::IVectorView<hstring> const& xboxUserIds)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerGetSessionsRequest::KeywordFilter()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerGetSessionsRequest::KeywordFilter(hstring const& value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
hstring MultiplayerGetSessionsRequest::SessionTemplateNameFilter()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerGetSessionsRequest::SessionTemplateNameFilter(hstring const& value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionVisibility MultiplayerGetSessionsRequest::VisibilityFilter()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerGetSessionsRequest::VisibilityFilter(winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayerSessionVisibility const& value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t MultiplayerGetSessionsRequest::ContractVersionFilter()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiplayerGetSessionsRequest::ContractVersionFilter(uint32_t value)
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,26 +7,26 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::implementation
{
bool MultiplayerManagedInitialization::ManagedInitializationSet()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan MultiplayerManagedInitialization::JoinTimeout()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan MultiplayerManagedInitialization::MeasurementTimeout()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan MultiplayerManagedInitialization::EvaluationTimeout()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerManagedInitialization::AutoEvaluate()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t MultiplayerManagedInitialization::MembersNeededToStart()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,26 +7,26 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::implementation
{
bool MultiplayerMemberInitialization::MemberInitializationSet()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan MultiplayerMemberInitialization::JoinTimeout()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan MultiplayerMemberInitialization::MeasurementTimeout()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan MultiplayerMemberInitialization::EvaluationTimeout()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiplayerMemberInitialization::ExternalEvaluation()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint32_t MultiplayerMemberInitialization::MembersNeededToStart()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,18 +7,18 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::implementation
{
winrt::Windows::Foundation::TimeSpan MultiplayerPeerToHostRequirements::LatencyMaximum()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t MultiplayerPeerToHostRequirements::BandwidthDownMinimumInKilobitsPerSecond()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t MultiplayerPeerToHostRequirements::BandwidthUpMinimumInKilobitsPerSecond()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Microsoft::Xbox::Services::Multiplayer::MultiplayMetrics MultiplayerPeerToHostRequirements::HostSelectionMetric()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

View File

@@ -7,10 +7,10 @@ namespace winrt::Microsoft::Xbox::Services::Multiplayer::implementation
{
winrt::Windows::Foundation::TimeSpan MultiplayerPeerToPeerRequirements::LatencyMaximum()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
uint64_t MultiplayerPeerToPeerRequirements::BandwidthMinimumInKilobitsPerSecond()
{
Logger::NotImplemented(); throw hresult_not_implemented();
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}

Some files were not shown because too many files have changed in this diff Show More