mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-05-05 08:49:40 -05:00
16 lines
453 B
C++
16 lines
453 B
C++
#pragma once
|
|
#include "Windows.Kinect.FrameCapturedEventArgs.g.h"
|
|
|
|
|
|
namespace winrt::Windows::Kinect::implementation
|
|
{
|
|
struct FrameCapturedEventArgs : FrameCapturedEventArgsT<FrameCapturedEventArgs>
|
|
{
|
|
FrameCapturedEventArgs() = default;
|
|
|
|
winrt::Windows::Kinect::FrameSourceTypes FrameType();
|
|
winrt::Windows::Kinect::FrameCapturedStatus FrameStatus();
|
|
winrt::Windows::Foundation::TimeSpan RelativeTime();
|
|
};
|
|
}
|