The HLFNAMEF enumeration constants specify which friendly name a client is requesting. These flags are used by the IHlink::GetFriendlyName interface.
typedef enum tagHLFNAMEFMembers{
HLFNAMEF_DEFAULT,
HLFNAMEF_TRYCACHE,
HLFNAMEF_TRYPRETTYTARGET,
HLFNAMEF_TRYFULLTARGET,
HLFNAMEF_TRYWIN95SHORTCUT
} HLFNAMEF ;
HLFNAMEF_DEFAULT
Requests the cached friendly name, or else the simplified display name.
HLFNAMEF_TRYCACHE
Requests the friendly name that is cached in the Hlink object.
HLFNAMEF_TRYPRETTYTARGET
Requests a beautified version of the display name of the hyperlink target.
HLFNAMEF_TRYFULLTARGET
Requests the full display name of the hyperlink target.
HLFNAMEF_TRYWIN95SHORTCUT
Requests a simplified version of the full display name of the hyperlink target.
See Also