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.
This commit is contained in:
Serenity
2025-06-03 05:04:16 -04:00
parent ea9a2facc0
commit 9d6d26d584
379 changed files with 2673 additions and 2604 deletions
@@ -7,30 +7,30 @@ namespace winrt::Windows::Kinect::implementation
{
void BodyIndexFrame::Close()
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
void BodyIndexFrame::CopyFrameDataToArray(array_view<uint8_t> frameData)
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
void BodyIndexFrame::CopyFrameDataToBuffer(winrt::Windows::Storage::Streams::IBuffer const& buffer)
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Storage::Streams::IBuffer BodyIndexFrame::LockImageBuffer()
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Kinect::FrameDescription BodyIndexFrame::FrameDescription()
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Foundation::TimeSpan BodyIndexFrame::RelativeTime()
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Kinect::BodyIndexFrameSource BodyIndexFrame::BodyIndexFrameSource()
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
}