SDRSharp/SDRSharp.Radio/PortAudioSharp/PaStreamFinishedCallbackDelegate.cs

9 lines
210 B
C#
Raw Normal View History

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