Files
WinDurango/dlls/winrt_x/Implementation/Windows.Kinect.MultiSourceFrameReader.cpp
Serenity ea9a2facc0 Refactor logging and update function naming conventions
This commit standardizes the logging mechanism by replacing calls to `Logger::NotImplemented()` with the new `LOG_NOTIMPLEMENTED()` macro across multiple files in the Microsoft Xbox Services and Kinect libraries.

Function names in the debug logging macros have been updated to reflect the new naming conventions, changing `ExtractProjectName` to `RetrieveProjectName` and `ExtractFunctionName` to `RetrieveFunctionName`.

Additionally, the `Logger` class has been enhanced to include structured logging capabilities with various log levels and context information for better traceability.

New properties and methods have been introduced in several classes, while many implementations still remain to be completed. Overall, these changes improve maintainability and consistency in the logging framework across the Xbox development environment.
2025-06-03 03:59:32 -04:00

41 lines
1.5 KiB
C++

#include "pch.h"
#include "Windows.Kinect.MultiSourceFrameReader.h"
#include "Windows.Kinect.MultiSourceFrameReader.g.cpp"
namespace winrt::Windows::Kinect::implementation
{
void MultiSourceFrameReader::Close()
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::event_token MultiSourceFrameReader::MultiSourceFrameArrived(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::Kinect::MultiSourceFrameReader, winrt::Windows::Kinect::MultiSourceFrameArrivedEventArgs> const& value)
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiSourceFrameReader::MultiSourceFrameArrived(winrt::event_token const& token) noexcept
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Kinect::MultiSourceFrame MultiSourceFrameReader::AcquireLatestFrame()
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Kinect::FrameSourceTypes MultiSourceFrameReader::FrameSourceTypes()
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
bool MultiSourceFrameReader::IsPaused()
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
void MultiSourceFrameReader::IsPaused(bool isPaused)
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
winrt::Windows::Kinect::KinectSensor MultiSourceFrameReader::KinectSensor()
{
LOG_NOTIMPLEMENTED(); throw hresult_not_implemented();
}
}