Moved direct WinAPI access into a service
This commit is contained in:
17
Eve-O-Preview/DwmAPI/Interop/DWM_THUMBNAIL_PROPERTIES.cs
Normal file
17
Eve-O-Preview/DwmAPI/Interop/DWM_THUMBNAIL_PROPERTIES.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace EveOPreview.DwmInterop
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
class DWM_THUMBNAIL_PROPERTIES
|
||||
{
|
||||
public uint dwFlags;
|
||||
public RECT rcDestination;
|
||||
public RECT rcSource;
|
||||
public byte opacity;
|
||||
[MarshalAs(UnmanagedType.Bool)]
|
||||
public bool fVisible;
|
||||
[MarshalAs(UnmanagedType.Bool)]
|
||||
public bool fSourceClientAreaOnly;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user