DROPFILES
struct DROPFILES
Defines the CF_HDROP clipboard format. The data that follows is a double null-terminated list of file names.
using System.CodeDom.Compiler;
using System.Drawing;
using System.Runtime.InteropServices;
using Windows.Win32.Foundation;
namespace Windows.Win32.UI.Shell
{
[StructLayout(LayoutKind.Sequential, Pack = 1)]
[GeneratedCode("Microsoft.Windows.CsWin32", "0.3.151+58e949951d.RR")]
internal struct DROPFILES
{
internal uint pFiles;
internal Point pt;
internal BOOL fNC;
internal BOOL fWide;
}
}