summaryrefslogtreecommitdiff
path: root/plugins/Toaster/src/stdafx.h
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2015-08-29 12:59:53 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2015-08-29 12:59:53 +0000
commitba6758788a83706e0b240fff7d93050656c8449e (patch)
tree21e4afaba31574ceb3bbcca0badeb0934d1428b6 /plugins/Toaster/src/stdafx.h
parenta72aabf4e8e795760b8508da645e9587affffec0 (diff)
Toaster: code cleanup; version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@15090 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Toaster/src/stdafx.h')
-rw-r--r--plugins/Toaster/src/stdafx.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/plugins/Toaster/src/stdafx.h b/plugins/Toaster/src/stdafx.h
index 2e2e59cd1c..f5c193c328 100644
--- a/plugins/Toaster/src/stdafx.h
+++ b/plugins/Toaster/src/stdafx.h
@@ -50,8 +50,17 @@ int OnPreShutdown(WPARAM, LPARAM);
INT_PTR Service(WPARAM, LPARAM);
HRESULT ShortcutExists();
wchar_t* GetShortcutPath();
-HRESULT TryCreateShortcut();
HRESULT InstallShortcut(_In_z_ wchar_t *shortcutPath);
+__forceinline HRESULT TryCreateShortcut()
+{
+ return (ShortcutExists() ? S_OK : InstallShortcut(ptrW(GetShortcutPath())));
+}
+
+__forceinline HRESULT ShortcutExists()
+{
+ return (!(GetFileAttributes(ptrW(GetShortcutPath())) < 0xFFFFFFF) ? S_OK : S_FALSE);
+}
+
#endif //_COMMON_H_