mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
15 lines
335 B
C#
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;
|
|
}
|
|
}
|