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

9 lines
210 B
C#

using System;
using System.Runtime.InteropServices;
namespace PortAudioSharp
{
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
internal delegate void PaStreamFinishedCallbackDelegate(IntPtr userData);
}