2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.OLE
|
2025-09-26 11:57:18 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The DECIMAL (Packet Version) packet represents a DECIMAL as specified in [MS-OAUT] section
|
|
|
|
|
/// 2.2.26
|
|
|
|
|
/// </summary>
|
2025-10-30 22:52:56 -04:00
|
|
|
/// <see href="https://winprotocoldoc.z19.web.core.windows.net/MS-OLEPS/%5bMS-OLEPS%5d.pdf"/>
|
2025-09-26 11:57:18 -04:00
|
|
|
public class DECIMAL
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// MUST be set to zero and MUST be ignored
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ushort Reserved { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The value of the scale field specified in [MS-OAUT] section 2.2.26
|
|
|
|
|
/// </summary>
|
|
|
|
|
public byte Scale { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The value of the sign field specified in [MS-OAUT] section 2.2.26
|
|
|
|
|
/// </summary>
|
|
|
|
|
public byte Sign { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The value of the Hi32 field specified in [MS-OAUT] section 2.2.26
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint Hi32 { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The value of the Lo64 field specified in [MS-OAUT] section 2.2.26
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ulong Lo64 { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|