diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-09-16 12:35:57 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-09-16 12:35:57 +0000 |
commit | d0a1040e019092c29d8d2a2c2a29bc1e7644a5e5 (patch) | |
tree | 9297e79ab09653aa870c5ef83c163673fbce8e6c /plugins/Toaster/src/toast_notification.h | |
parent | 87208846a0e7fd82e246dd1e6a9cddfc0ca159e4 (diff) |
Toaster: more optimizations
git-svn-id: http://svn.miranda-ng.org/main/trunk@15361 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Toaster/src/toast_notification.h')
-rw-r--r-- | plugins/Toaster/src/toast_notification.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/Toaster/src/toast_notification.h b/plugins/Toaster/src/toast_notification.h index 6a83da5da4..e56a08c418 100644 --- a/plugins/Toaster/src/toast_notification.h +++ b/plugins/Toaster/src/toast_notification.h @@ -8,6 +8,10 @@ private: wchar_t* _caption;
wchar_t* _imagePath;
+ EventRegistrationToken ertActivated;
+ EventRegistrationToken ertDismissed;
+ EventRegistrationToken ertFailed;
+
Microsoft::WRL::ComPtr<ABI::Windows::UI::Notifications::IToastNotificationManagerStatics> notificationManager;
Microsoft::WRL::ComPtr<ABI::Windows::UI::Notifications::IToastNotifier> notifier;
Microsoft::WRL::ComPtr<ABI::Windows::UI::Notifications::IToastNotification> notification;
|