AC_SRC.cs 370 B

123456789101112131415
  1. namespace Microsoft.Win32
  2. {
  3. //AC_SRC定义
  4. public static partial class NativeMethods
  5. {
  6. /// <summary>
  7. /// currentlly defined blend function
  8. /// </summary>
  9. public const byte AC_SRC_OVER = 0x00;
  10. /// <summary>
  11. /// alpha format flags
  12. /// </summary>
  13. public const byte AC_SRC_ALPHA = 0x01;
  14. }
  15. }