using System; using System.Runtime.InteropServices; namespace Pilz.Win32.Native { public class LibShell32 { [DllImport("shell32.dll")] public static extern IntPtr SHGetFileInfo(string pszPath, uint dwFileAttributes, ref SHFILEINFO psfi, uint cbSizeFileInfo, uint uFlags); } }