SCROLLBARINFO.cs 365 B

12345678910111213141516
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace LYFZ.OtherExpansion.Win32.Struct
  4. {
  5. public struct SCROLLBARINFO
  6. {
  7. public int cbSize;
  8. public RECT rcScrollBar;
  9. public int dxyLineButton;
  10. public int xyThumbTop;
  11. public int xyThumbBottom;
  12. public int reserved;
  13. [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)]
  14. public int[] rgstate;
  15. }
  16. }