mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-05-04 08:19:43 -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.
61 lines
1.9 KiB
C++
61 lines
1.9 KiB
C++
#include "pch.h"
|
|
#include "Microsoft.Xbox.Services.Leaderboard.LeaderboardQuery.h"
|
|
#include "Microsoft.Xbox.Services.Leaderboard.LeaderboardQuery.g.cpp"
|
|
|
|
|
|
namespace winrt::Microsoft::Xbox::Services::Leaderboard::implementation
|
|
{
|
|
bool LeaderboardQuery::SkipResultToMe()
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
void LeaderboardQuery::SkipResultToMe(bool value)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
uint32_t LeaderboardQuery::SkipResultToRank()
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
void LeaderboardQuery::SkipResultToRank(uint32_t value)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
uint32_t LeaderboardQuery::MaxItems()
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
void LeaderboardQuery::MaxItems(uint32_t value)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
winrt::Microsoft::Xbox::Services::Leaderboard::SortOrder LeaderboardQuery::Order()
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
void LeaderboardQuery::Order(winrt::Microsoft::Xbox::Services::Leaderboard::SortOrder const& value)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
uint64_t LeaderboardQuery::CallbackId()
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
void LeaderboardQuery::CallbackId(uint64_t value)
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
hstring LeaderboardQuery::StatName()
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
hstring LeaderboardQuery::SocialGroup()
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
bool LeaderboardQuery::HasNext()
|
|
{
|
|
LOG_NOT_IMPLEMENTED(); throw hresult_not_implemented();
|
|
}
|
|
}
|