mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-05-02 07:19:12 -05:00
9d6d26d584
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.
21 lines
706 B
C++
21 lines
706 B
C++
#include "pch.h"
|
|
#include "Microsoft.Xbox.Services.UserStatistics.StatisticChangeEventArgs.h"
|
|
#include "Microsoft.Xbox.Services.UserStatistics.StatisticChangeEventArgs.g.cpp"
|
|
|
|
|
|
namespace winrt::Microsoft::Xbox::Services::UserStatistics::implementation
|
|
{
|
|
hstring StatisticChangeEventArgs::XboxUserId()
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
hstring StatisticChangeEventArgs::ServiceConfigurationId()
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
winrt::Microsoft::Xbox::Services::UserStatistics::Statistic StatisticChangeEventArgs::LatestStatistic()
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
}
|