WinRT - Better Debug

This commit is contained in:
Serenity
2025-06-03 00:54:43 -04:00
parent 212c7ab23b
commit 222cdf0a22
410 changed files with 2812 additions and 66933 deletions
@@ -7,34 +7,34 @@ namespace winrt::Windows::Kinect::implementation
{
void MultiSourceFrameReader::Close()
{
throw hresult_not_implemented();
Logger::NotImplemented(); throw hresult_not_implemented();
}
winrt::event_token MultiSourceFrameReader::MultiSourceFrameArrived(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::Kinect::MultiSourceFrameReader, winrt::Windows::Kinect::MultiSourceFrameArrivedEventArgs> const& value)
{
throw hresult_not_implemented();
Logger::NotImplemented(); throw hresult_not_implemented();
}
void MultiSourceFrameReader::MultiSourceFrameArrived(winrt::event_token const& token) noexcept
{
throw hresult_not_implemented();
Logger::NotImplemented(); throw hresult_not_implemented();
}
winrt::Windows::Kinect::MultiSourceFrame MultiSourceFrameReader::AcquireLatestFrame()
{
throw hresult_not_implemented();
Logger::NotImplemented(); throw hresult_not_implemented();
}
winrt::Windows::Kinect::FrameSourceTypes MultiSourceFrameReader::FrameSourceTypes()
{
throw hresult_not_implemented();
Logger::NotImplemented(); throw hresult_not_implemented();
}
bool MultiSourceFrameReader::IsPaused()
{
throw hresult_not_implemented();
Logger::NotImplemented(); throw hresult_not_implemented();
}
void MultiSourceFrameReader::IsPaused(bool isPaused)
{
throw hresult_not_implemented();
Logger::NotImplemented(); throw hresult_not_implemented();
}
winrt::Windows::Kinect::KinectSensor MultiSourceFrameReader::KinectSensor()
{
throw hresult_not_implemented();
Logger::NotImplemented(); throw hresult_not_implemented();
}
}