Files
cuetools.net/CUETools.Codecs.lame_enc/Interop/ACC.cs

15 lines
321 B
C#
Raw Normal View History

using System;
using System.Runtime.InteropServices;
namespace CUETools.Codecs.LAME.Interop
{
[StructLayout(LayoutKind.Sequential), Serializable]
public struct ACC
{
public uint dwSampleRate;
public byte byMode;
public ushort wBitrate;
public byte byEncodingMethod;
}
}