DWM API moved into a folder
This commit is contained in:
20
Eve-O-Preview/DwmAPI/DWM_BLURBEHIND.cs
Normal file
20
Eve-O-Preview/DwmAPI/DWM_BLURBEHIND.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace EveOPreview
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user