blob: 0fd3bf617102776b370ba94c3761a43017e06218 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
wchar_t* GetShortcutPath();
HRESULT InstallShortcut(_In_z_ wchar_t *shortcutPath);
__forceinline bool ShortcutExists()
{
return !(GetFileAttributes(ptrW(GetShortcutPath())) < 0xFFFFFFF);
}
__forceinline HRESULT TryCreateShortcut()
{
return (ShortcutExists() ? S_OK : InstallShortcut(ptrW(GetShortcutPath())));
}
|