SC.cs 988 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public class SC
  5. {
  6. public const int SC_SIZE = 61440;
  7. public const int SC_MOVE = 61456;
  8. public const int SC_MINIMIZE = 61472;
  9. public const int SC_MAXIMIZE = 61488;
  10. public const int SC_NEXTWINDOW = 61504;
  11. public const int SC_PREVWINDOW = 61520;
  12. public const int SC_CLOSE = 61536;
  13. public const int SC_VSCROLL = 61552;
  14. public const int SC_HSCROLL = 61568;
  15. public const int SC_MOUSEMENU = 61584;
  16. public const int SC_KEYMENU = 61696;
  17. public const int SC_ARRANGE = 61712;
  18. public const int SC_RESTORE = 61728;
  19. public const int SC_TASKLIST = 61744;
  20. public const int SC_SCREENSAVE = 61760;
  21. public const int SC_HOTKEY = 61776;
  22. public const int SC_DEFAULT = 61792;
  23. public const int SC_MONITORPOWER = 61808;
  24. public const int SC_CONTEXTHELP = 61824;
  25. public const int SC_SEPARATOR = 61455;
  26. public const int SCF_ISSECURE = 1;
  27. public const int SC_ICON = 61472;
  28. public const int SC_ZOOM = 61488;
  29. }
  30. }