ShellLink.EShellLinkResolveFlags Enum
Declaring Type: ShellLink
Namespace: Velopack.Windows
Assembly: Velopack
Assembly Version: 0.0.942+a011233
Flags determining how the links with missing targets are resolved.
[Flags]
public enum ShellLink.EShellLinkResolveFlags : uint
{
SLR_ANY_MATCH = 0x2,
SLR_INVOKE_MSI = 0x80,
SLR_NOLINKINFO = 0x40,
SLR_NO_UI = 0x1,
SLR_NO_UI_WITH_MSG_PUMP = 0x101,
SLR_NOUPDATE = 0x8,
SLR_NOSEARCH = 0x10,
SLR_NOTRACK = 0x20,
SLR_UPDATE = 0x4
}
Inheritance: object → ValueType → Enum → ShellLink.EShellLinkResolveFlags
Attributes: FlagsAttribute
Fields
Name | Description |
---|---|
SLR_ANY_MATCH | Allow any match during resolution. Has no effect on ME/2000 or above, use the other flags instead. |
SLR_INVOKE_MSI | Call the Microsoft Windows Installer. |
SLR_NOLINKINFO | Disable distributed link tracking. By default, distributed link tracking tracks removable media across multiple devices based on the volume name. It also uses the UNC path to track remote file systems whose drive letter has changed. Setting SLR_NOLINKINFO disables both types of tracking. |
SLR_NOSEARCH | Do not execute the search heuristics. |
SLR_NOTRACK | Do not use distributed link tracking. |
SLR_NOUPDATE | Do not update the link information. |
SLR_NO_UI | Do not display a dialog box if the link cannot be resolved. When SLR_NO_UI is set, a time-out value that specifies the maximum amount of time to be spent resolving the link can be specified in milliseconds. The function returns if the link cannot be resolved within the time-out duration. If the timeout is not set, the time-out duration will be set to the default value of 3,000 milliseconds (3 seconds). |
SLR_NO_UI_WITH_MSG_PUMP | Not documented in SDK. Assume same as SLR_NO_UI but intended for applications without a hWnd. |
SLR_UPDATE | If the link object has changed, update its path and list of identifiers. If SLR_UPDATE is set, you do not need to call IPersistFile::IsDirty to determine whether or not the link object has changed. |
Documentation generated by MdDocs