agrobot_base/Exemplos/SharpDX-master/Source/SharpDX.MediaFoundation/CaptureEngineOnSampleCallba...

16 lines
347 B
C#
Raw Normal View History

2023-08-31 11:50:53 +00:00
#if DESKTOP_APP
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharpDX.MediaFoundation
{
[Shadow(typeof(CaptureEngineOnSampleCallbackShadow))]
public partial interface CaptureEngineOnSampleCallback
{
void OnSample(Sample sample);
}
}
#endif