RDW.cs 579 B

12345678910111213141516171819202122
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public class RDW
  5. {
  6. public const int RDW_INVALIDATE = 1;
  7. public const int RDW_INTERNALPAINT = 2;
  8. public const int RDW_ERASE = 4;
  9. public const int RDW_VALIDATE = 8;
  10. public const int RDW_NOINTERNALPAINT = 16;
  11. public const int RDW_NOERASE = 32;
  12. public const int RDW_NOCHILDREN = 64;
  13. public const int RDW_ALLCHILDREN = 128;
  14. public const int RDW_UPDATENOW = 256;
  15. public const int RDW_ERASENOW = 512;
  16. public const int RDW_FRAME = 1024;
  17. public const int RDW_NOFRAME = 2048;
  18. private RDW()
  19. {
  20. }
  21. }
  22. }