Prev Next
SHFILEINFO  info
Contains information about a file object. 
typedef struct _SHFILEINFO { // shfi 
    HICON hIcon; 
    int   iIcon; 
    DWORD dwAttributes; 
    char  szDisplayName[MAX_PATH]; 
    char  szTypeName[80]; 
} SHFILEINFO; 
 
Members
- 
hIcon
 - 
Handle of the icon that represents the file.
 - 
iIcon
 - 
Index of the icon image within the system image list.
 - 
dwAttributes
 - 
Array of flags that indicates the attributes of the file object. For
information about the flags, see the description of the IShellFolder::GetAttributesOf
method. 
 - 
szDisplayName
 - 
String that contains the name of the file as it appears in the Windows shell,
or path and filename of the file that contains the icon representing the file.
 - 
szTypeName
 - 
String that describes the type of the file. 
 
Remarks
This structure is used with the SHGetFileInfo function.
See Also
IShellFolder::GetAttributesOf,
SHGetFileInfo 
See: