Files
WinDurango/dlls/winrt_x/Implementation/Windows.Xbox.Networking.QualityOfService.cpp
Serenity 9d6d26d584 Refactor Xbox Services SDK and enhance logging
Renamed functions in `dllmain.cpp` and `hooks.h` for clarity, including `XWinePatchImport` to `XPatchImport` and `XWineGetImport` to `XGetImport`. Added `<atlbase.h>` include in `hooks.h`. Updated comments to reflect contributions from the "XWine1 Team".

Standardized logging for unimplemented methods across various Xbox Services and Kinect classes, ensuring consistent use of `LOG_NOT_IMPLEMENTED()`.

Implemented new methods in `MultiplayerService`, `PresenceService`, `CatalogService`, `InventoryService`, and `PrivacyService` to enhance functionality related to multiplayer sessions, user presence, catalog management, and privacy settings.

Overall, these changes improve code organization, readability, and maintainability while laying the groundwork for future enhancements.
2025-06-03 05:04:16 -04:00

24 lines
1.2 KiB
C++

#include "pch.h"
#include "Windows.Xbox.Networking.QualityOfService.h"
#include "Windows.Xbox.Networking.QualityOfService.g.cpp"
namespace winrt::Windows::Xbox::Networking::implementation
{
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Xbox::Networking::MeasureQualityOfServiceResult> QualityOfService::MeasureQualityOfServiceAsync(winrt::Windows::Foundation::Collections::IIterable<winrt::Windows::Xbox::Networking::SecureDeviceAddress> addresses, winrt::Windows::Foundation::Collections::IIterable<winrt::Windows::Xbox::Networking::QualityOfServiceMetric> metrics, uint32_t timeoutInMilliseconds, uint32_t numberOfProbes)
{
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
void QualityOfService::PublishPrivatePayload(array_view<uint8_t const> payload)
{
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
void QualityOfService::ClearPrivatePayload()
{
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
void QualityOfService::ConfigureQualityOfService(uint32_t maxSimultaneousProbeConnections, bool constrainSystemBandwidthUp, bool constrainSystemBandwidthDown)
{
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
}