AW.cs 438 B

12345678910111213141516
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public static class AW
  5. {
  6. public const int AW_HOR_POSITIVE = 1;
  7. public const int AW_HOR_NEGATIVE = 2;
  8. public const int AW_VER_POSITIVE = 4;
  9. public const int AW_VER_NEGATIVE = 8;
  10. public const int AW_CENTER = 16;
  11. public const int AW_HIDE = 65536;
  12. public const int AW_ACTIVATE = 131072;
  13. public const int AW_SLIDE = 262144;
  14. public const int AW_BLEND = 524288;
  15. }
  16. }