Files
eveo/Eve-O-Preview/Services/Interop/DWM_THUMBNAIL_PROPERTIES.cs
2018-02-18 17:17:52 +02:00

17 lines
402 B
C#

using System.Runtime.InteropServices;
namespace EveOPreview.Services.Interop
{
[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;
}
}