TernaryRasterOperations.cs 744 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public class TernaryRasterOperations
  5. {
  6. public const int SRCCOPY = 13369376;
  7. public const int SRCPAINT = 15597702;
  8. public const int SRCAND = 8913094;
  9. public const int SRCINVERT = 6684742;
  10. public const int SRCERASE = 4457256;
  11. public const int NOTSRCCOPY = 3342344;
  12. public const int NOTSRCERASE = 1114278;
  13. public const int MERGECOPY = 12583114;
  14. public const int MERGEPAINT = 12255782;
  15. public const int PATCOPY = 15728673;
  16. public const int PATPAINT = 16452105;
  17. public const int PATINVERT = 5898313;
  18. public const int DSTINVERT = 5570569;
  19. public const int BLACKNESS = 66;
  20. public const int WHITENESS = 16711778;
  21. private TernaryRasterOperations()
  22. {
  23. }
  24. }
  25. }