SDRSharp/SDRSharp.Radio/PortAudioSharp/PaStreamCallbackDelegate.cs

9 lines
347 B
C#
Raw Permalink Normal View History

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);
}