mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-05-01 14:59:35 -05:00
WinRT - Better Debug
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user