mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
18 lines
462 B
C#
18 lines
462 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Runtime.InteropServices;
|
|||
|
|
|
|||
|
|
namespace NAudio.CoreAudioApi.Interfaces
|
|||
|
|
{
|
|||
|
|
[Guid("F294ACFC-3146-4483-A7BF-ADDCA7C260E2"),
|
|||
|
|
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|||
|
|
interface IAudioRenderClient
|
|||
|
|
{
|
|||
|
|
IntPtr GetBuffer(int numFramesRequested);
|
|||
|
|
void ReleaseBuffer(int numFramesWritten, AudioClientBufferFlags bufferFlags);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|