CS.cs 592 B

1234567891011121314151617181920
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public static class CS
  5. {
  6. public const int CS_VREDRAW = 1;
  7. public const int CS_HREDRAW = 2;
  8. public const int CS_DBLCLKS = 8;
  9. public const int CS_OWNDC = 32;
  10. public const int CS_CLASSDC = 64;
  11. public const int CS_PARENTDC = 128;
  12. public const int CS_NOCLOSE = 512;
  13. public const int CS_SAVEBITS = 2048;
  14. public const int CS_BYTEALIGNCLIENT = 4096;
  15. public const int CS_BYTEALIGNWINDOW = 8192;
  16. public const int CS_GLOBALCLASS = 16384;
  17. public const int CS_IME = 65536;
  18. public const int CS_DROPSHADOW = 131072;
  19. }
  20. }