Fixed header reference for DWM_THUMBNAIL_PROPERTIES

pull/10/head
David Hall 2018-05-31 16:35:41 -06:00
parent 1c02a6addb
commit bd9b328aaf
1 changed files with 4 additions and 1 deletions

View File

@ -757,7 +757,10 @@ namespace Vanara.PInvoke
public bool fOpaque;
}
/// <summary>Specifies Desktop Window Manager (DWM) thumbnail properties. Used by the DwmUpdateThumbnailProperties function.</summary>
/// <summary>Specifies Desktop Window Manager (DWM) thumbnail properties. Used by the <c>DwmUpdateThumbnailProperties</c> function.</summary>
// typedef struct _DWM_THUMBNAIL_PROPERTIES { DWORD dwFlags; RECT rcDestination; RECT rcSource; BYTE opacity; BOOL fVisible; BOOL fSourceClientAreaOnly;} DWM_THUMBNAIL_PROPERTIES, *PDWM_THUMBNAIL_PROPERTIES;
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa969502(v=vs.85).aspx
[PInvokeData("Dwmapi.h", MSDNShortId = "aa969502")]
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct DWM_THUMBNAIL_PROPERTIES
{