private static extern int DwmUpdateThumbnailProperties(IntPtr hThumb, ref DWM_THUMBNAIL_PROPERTIES props);
public static bool Update(IntPtr thumbnail, ref DWM_THUMBNAIL_PROPERTIES properties) { return(DwmUpdateThumbnailProperties(thumbnail, ref properties) == S_OK); }