SDRSharp/SDRSharp.Radio/PortAudioSharp/PaStreamCallbackDelegate.cs
2018-03-24 23:01:41 -07:00

9 lines
347 B
C#

using System;
using System.Runtime.InteropServices;
namespace PortAudioSharp
{
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
internal unsafe delegate PaStreamCallbackResult PaStreamCallbackDelegate(float* input, float* output, uint frameCount, ref PaStreamCallbackTimeInfo timeInfo, PaStreamCallbackFlags statusFlags, IntPtr userData);
}