mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
9 lines
347 B
C#
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);
|
||
|
|
}
|