Files
cuetools.net/CUETools.Codecs.LAME/Interop/ACC.cs
2011-10-24 08:42:30 +00:00

15 lines
335 B
C#

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;
}
}