Home | History | Annotate | Download | only in win

Lines Matching refs:shortcut

18   // Create a new shortcut (overwriting if necessary).
20 // Overwrite an existing shortcut (fails if the shortcut doesn't exist).
21 // If the arguments are not specified on the new shortcut, keep the old
22 // shortcut's arguments.
24 // Update specified properties only on an existing shortcut.
28 // Properties for shortcuts. Properties set will be applied to the shortcut on
93 // The target to launch from this shortcut. This is mandatory when creating
94 // a shortcut.
96 // The name of the working directory when launching the shortcut.
98 // The arguments to be applied to |target| when launching from this shortcut.
101 // The localized description of the shortcut.
108 // The app model id for the shortcut (Win7+).
110 // Whether this is a dual mode shortcut (Win8+).
113 // set on the shortcut, others will be ignored.
117 // This method creates (or updates) a shortcut link at |shortcut_path| using the
128 // Resolves Windows shortcut (.LNK file)
129 // This methods tries to resolve selected properties of a shortcut .LNK file.
130 // The path of the shortcut to resolve is in |shortcut_path|. |options| is a bit
140 // Resolves Windows shortcut (.LNK file).
151 // Pins a shortcut to the Windows 7 taskbar. The shortcut file must already
152 // exist and be a shortcut that points to an executable. The app id of the
153 // shortcut is used to group windows and must be set correctly.
154 BASE_EXPORT bool TaskbarPinShortcutLink(const wchar_t* shortcut);
156 // Unpins a shortcut from the Windows 7 taskbar. The shortcut must exist and
157 // already be pinned to the taskbar. The app id of the shortcut is used as the
159 BASE_EXPORT bool TaskbarUnpinShortcutLink(const wchar_t* shortcut);