SHFILEINFO (Structures)
Last changed: PJonDevelopment (http---pjondevelopment.50webs.com)-189.25.187.30

.
Summary
TODO - a short description

C# Definition:

struct SHFILEINFO {
    public IntPtr hIcon;
    public IntPtr iIcon;
    public uint dwAttributes;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 260)]
    public string szDisplayName;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 80)]
    public string szTypeName;
}

VB Definition:

Structure SHFILEINFO
    Public hIcon As IntPtr
    Public iIcon As Integer
    Public dwAttributes As Integer
    <MarshalAs(UnmanagedType.ByValTStr, SizeConst:=260)> _
    Public szDisplayName As String
    <MarshalAs(UnmanagedType.ByValTStr, SizeConst:=80)> _
    Public szTypeName As String
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation
SHFILEINFO on MSDN