SIF.cs 298 B

12345678910111213
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public class SIF
  5. {
  6. public const int SIF_RANGE = 1;
  7. public const int SIF_PAGE = 2;
  8. public const int SIF_POS = 4;
  9. public const int SIF_DISABLENOSCROLL = 8;
  10. public const int SIF_TRACKPOS = 16;
  11. public const int SIF_ALL = 23;
  12. }
  13. }