mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
9 lines
210 B
C#
9 lines
210 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace PortAudioSharp
|
|
{
|
|
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
internal delegate void PaStreamFinishedCallbackDelegate(IntPtr userData);
|
|
}
|