mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-04-25 02:48:20 -05:00
20 lines
608 B
C++
20 lines
608 B
C++
#include "pch.h"
|
|
#include "Microsoft.Xbox.GameChat.ChatPerformanceTime.h"
|
|
#include "Microsoft.Xbox.GameChat.ChatPerformanceTime.g.cpp"
|
|
|
|
namespace winrt::Microsoft::Xbox::GameChat::implementation
|
|
{
|
|
double ChatPerformanceTime::MinTimeInMilliseconds()
|
|
{
|
|
Logger::NotImplemented(); throw hresult_not_implemented();
|
|
}
|
|
double ChatPerformanceTime::MaxTimeInMilliseconds()
|
|
{
|
|
Logger::NotImplemented(); throw hresult_not_implemented();
|
|
}
|
|
double ChatPerformanceTime::AverageTimeInMilliseconds()
|
|
{
|
|
Logger::NotImplemented(); throw hresult_not_implemented();
|
|
}
|
|
}
|