You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
637 B
24 lines
637 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
|
|
namespace Apewer.Internals.Interop
|
|
{
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
internal class DWM_BLURBEHIND
|
|
{
|
|
public uint dwFlags;
|
|
[MarshalAs(UnmanagedType.Bool)]
|
|
public bool fEnable;
|
|
public IntPtr hRegionBlur;
|
|
[MarshalAs(UnmanagedType.Bool)]
|
|
public bool fTransitionOnMaximized;
|
|
|
|
public const uint DWM_BB_ENABLE = 0x00000001;
|
|
public const uint DWM_BB_BLURREGION = 0x00000002;
|
|
public const uint DWM_BB_TRANSITIONONMAXIMIZED = 0x00000004;
|
|
}
|
|
|
|
}
|
|
|