SBM.cs 484 B

12345678910111213141516171819
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public class SBM
  5. {
  6. public const int SBM_SETPOS = 224;
  7. public const int SBM_GETPOS = 225;
  8. public const int SBM_SETRANGE = 226;
  9. public const int SBM_SETRANGEREDRAW = 230;
  10. public const int SBM_GETRANGE = 227;
  11. public const int SBM_ENABLE_ARROWS = 228;
  12. public const int SBM_SETSCROLLINFO = 233;
  13. public const int SBM_GETSCROLLINFO = 234;
  14. public const int SBM_GETSCROLLBARINFO = 235;
  15. private SBM()
  16. {
  17. }
  18. }
  19. }