17 lines
396 B
C#
17 lines
396 B
C#
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;
|
|
}
|
|
} |