mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-01-30 23:31:48 -06:00
17 lines
654 B
C++
17 lines
654 B
C++
#include "pch.h"
|
|
#include "Microsoft.Xbox.Services.UserStatistics.ServiceConfigurationStatistic.h"
|
|
#include "Microsoft.Xbox.Services.UserStatistics.ServiceConfigurationStatistic.g.cpp"
|
|
|
|
|
|
namespace winrt::Microsoft::Xbox::Services::UserStatistics::implementation
|
|
{
|
|
hstring ServiceConfigurationStatistic::ServiceConfigurationId()
|
|
{
|
|
Logger::NotImplemented(); throw hresult_not_implemented();
|
|
}
|
|
winrt::Windows::Foundation::Collections::IVectorView<winrt::Microsoft::Xbox::Services::UserStatistics::Statistic> ServiceConfigurationStatistic::Statistics()
|
|
{
|
|
Logger::NotImplemented(); throw hresult_not_implemented();
|
|
}
|
|
}
|