THUMBBUTTON.cs 434 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace Standard;
  4. [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode, Pack = 8)]
  5. internal struct THUMBBUTTON
  6. {
  7. public const int THBN_CLICKED = 6144;
  8. public THB dwMask;
  9. public uint iId;
  10. public uint iBitmap;
  11. public IntPtr hIcon;
  12. [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 260)]
  13. public string szTip;
  14. public THBF dwFlags;
  15. }