PRF.cs 329 B

12345678910111213
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public static class PRF
  5. {
  6. public const long PRF_CHECKVISIBLE = 1L;
  7. public const long PRF_NONCLIENT = 2L;
  8. public const long PRF_CLIENT = 4L;
  9. public const long PRF_ERASEBKGND = 8L;
  10. public const long PRF_CHILDREN = 16L;
  11. public const long PRF_OWNED = 32L;
  12. }
  13. }