Files
WinDurango/dlls/winrt_x/Implementation/Windows.Xbox.Management.Deployment.ContentInstallationInfo.cpp
T
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

40 lines
1.8 KiB
C++

#include "pch.h"
#include "Windows.Xbox.Management.Deployment.ContentInstallationInfo.h"
#include "Windows.Xbox.Management.Deployment.ContentInstallationInfo.g.cpp"
namespace winrt::Windows::Xbox::Management::Deployment::implementation
{
ContentInstallationInfo::ContentInstallationInfo(hstring const& path, hstring const& oneStoreProductId, winrt::guid const& contentId, hstring const& packageFamilyName, winrt::guid const& siblingId, winrt::guid const& variantId, winrt::Windows::Xbox::Management::Deployment::ConsoleGeneration const& generation, winrt::Windows::Xbox::Management::Deployment::IContentMetadata const& metadata)
{
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
ContentInstallationInfo::ContentInstallationInfo(hstring const& path, hstring const& oneStoreProductId, winrt::guid const& contentId, hstring const& packageFamilyName, winrt::Windows::Xbox::Management::Deployment::IContentMetadata const& metadata)
{
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContentInstallationInfo::Path()
{
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
winrt::guid ContentInstallationInfo::ContentId()
{
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Xbox::Management::Deployment::IContentMetadata ContentInstallationInfo::Metadata()
{
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContentInstallationInfo::OneStoreProductId()
{
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
hstring ContentInstallationInfo::PackageFamilyName()
{
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
bool ContentInstallationInfo::InstallByDefault()
{
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
}
}