SHSTOCKICONINFO
struct SHSTOCKICONINFO
using System.Runtime.InteropServices;
using Windows.Win32.UI.WindowsAndMessaging;
namespace Windows.Win32.UI.Shell
{
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
internal struct SHSTOCKICONINFO
{
public uint cbSize;
public HICON hIcon;
public int iSysImageIndex;
public int iIcon;
public unsafe fixed char szPath[260];
}
}