|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| -
| Header File
| shellapi.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
SHFILEINFO
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
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|