CDDS.cs 470 B

12345678910111213141516
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public static class CDDS
  5. {
  6. public const int CDDS_PREPAINT = 1;
  7. public const int CDDS_POSTPAINT = 2;
  8. public const int CDDS_PREERASE = 3;
  9. public const int CDDS_POSTERASE = 4;
  10. public const int CDDS_ITEM = 65536;
  11. public const int CDDS_ITEMPREPAINT = 65537;
  12. public const int CDDS_ITEMPOSTPAINT = 65538;
  13. public const int CDDS_ITEMPREERASE = 65539;
  14. public const int CDDS_ITEMPOSTERASE = 65540;
  15. }
  16. }