mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-01-10 13:19:33 -06:00
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.
44 lines
1.7 KiB
C++
44 lines
1.7 KiB
C++
#include "pch.h"
|
|
#include "Windows.Xbox.ApplicationModel.State.Internal.ContentCompatibility.h"
|
|
#include "Windows.Xbox.ApplicationModel.State.Internal.ContentCompatibility.g.cpp"
|
|
|
|
namespace winrt::Windows::Xbox::ApplicationModel::State::Internal::implementation
|
|
{
|
|
winrt::hresult ContentCompatibility::IsContentCompatible(winrt::guid const& contentId)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
winrt::hresult ContentCompatibility::IsContentCompatible(hstring const& productId)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
uint64_t ContentCompatibility::GetQuickResumeFlags(uint32_t titleId)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
bool ContentCompatibility::IsQuickResumeAllowedForEra(uint32_t titleId)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
bool ContentCompatibility::IsQuickResumeBlockedForGameCore(uint32_t titleId)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
winrt::hresult ContentCompatibility::IsXbox360ContentCompatible(winrt::guid const& legacyProductId)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
hstring ContentCompatibility::GetXbox360StoreIdFromContentId(winrt::guid const& contentId)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
bool ContentCompatibility::IsQuickResumeBlockedForServer(uint32_t titleId)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
uint32_t ContentCompatibility::GetMacIdBehaviorForTitleOnServer(uint32_t titleId)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
}
|