From ba6758788a83706e0b240fff7d93050656c8449e Mon Sep 17 00:00:00 2001 From: MikalaiR Date: Sat, 29 Aug 2015 12:59:53 +0000 Subject: Toaster: code cleanup; version bump git-svn-id: http://svn.miranda-ng.org/main/trunk@15090 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Toaster/src/add_to_start_menu.cpp | 35 ++++++------------------------- 1 file changed, 6 insertions(+), 29 deletions(-) (limited to 'plugins/Toaster/src/add_to_start_menu.cpp') diff --git a/plugins/Toaster/src/add_to_start_menu.cpp b/plugins/Toaster/src/add_to_start_menu.cpp index ae2d1e7131..ac0f2ff7b2 100644 --- a/plugins/Toaster/src/add_to_start_menu.cpp +++ b/plugins/Toaster/src/add_to_start_menu.cpp @@ -1,38 +1,15 @@ #include "stdafx.h" +#define SHORTCUT_PATH "\\Microsoft\\Windows\\Start Menu\\Programs\\Miranda NG.lnk" + using namespace Microsoft::WRL; wchar_t* GetShortcutPath() { - wchar_t shortcutPath[MAX_PATH]; - GetEnvironmentVariable(_T("APPDATA"), shortcutPath, MAX_PATH); - wcscat_s(shortcutPath, ARRAYSIZE(shortcutPath), L"\\Microsoft\\Windows\\Start Menu\\Programs\\Miranda NG.lnk"); - - return mir_wstrdup(shortcutPath); -} - -HRESULT ShortcutExists() -{ - HRESULT hr; - DWORD attributes = GetFileAttributes(ptrW(GetShortcutPath())); - bool fileExists = attributes < 0xFFFFFFF; - - if (!fileExists) - { - hr = S_OK; - } - else - { - hr = S_FALSE; - } - return hr; -} - -HRESULT TryCreateShortcut() -{ - if (!ShortcutExists()) - return InstallShortcut(ptrW(GetShortcutPath())); - return S_OK; + wchar_t path[MAX_PATH]; + GetEnvironmentVariable(_T("APPDATA"), path, MAX_PATH); + wcscat_s(path, _T(SHORTCUT_PATH)); + return mir_wstrdup(path); } HRESULT InstallShortcut(_In_z_ wchar_t *shortcutPath) -- cgit v1.2.3