WTA_OPTIONS.cs 556 B

12345678910111213141516171819
  1. using System;
  2. using System.Diagnostics.CodeAnalysis;
  3. using System.Runtime.InteropServices;
  4. namespace Standard;
  5. [StructLayout(LayoutKind.Explicit)]
  6. internal struct WTA_OPTIONS
  7. {
  8. public const uint Size = 8u;
  9. [SuppressMessage("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields", Justification = "Used by native code.")]
  10. [FieldOffset(0)]
  11. public WTNCA dwFlags;
  12. [SuppressMessage("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields", Justification = "Used by native code.")]
  13. [FieldOffset(4)]
  14. public WTNCA dwMask;
  15. }