diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-28 11:32:10 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-28 11:32:10 +0000 |
commit | 4402f6924f14847c1570b22ef06ba54125a9c41c (patch) | |
tree | b474f5c3ef8660c0919474eb8c6e4a4dc15bb0a0 /plugins/Toaster/src/stdafx.h | |
parent | f056d6596882aa7cfecc21a61e8ef48f2b514460 (diff) |
Toaster: hiding toasts
git-svn-id: http://svn.miranda-ng.org/main/trunk@15053 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Toaster/src/stdafx.h')
-rw-r--r-- | plugins/Toaster/src/stdafx.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/plugins/Toaster/src/stdafx.h b/plugins/Toaster/src/stdafx.h index a113024828..8df66f4598 100644 --- a/plugins/Toaster/src/stdafx.h +++ b/plugins/Toaster/src/stdafx.h @@ -13,6 +13,8 @@ #include <windows.ui.notifications.h>
#include <newpluginapi.h>
+#include <m_system.h>
+#include <m_system_cpp.h>
#include <m_core.h>
#include <m_utils.h>
#include <m_langpack.h>
@@ -33,10 +35,19 @@ const wchar_t AppUserModelID[] = _T("MirandaNG"); #include "toast_event_handler.h"
#include "toast_notification.h"
+extern mir_cs csNotifications;
+extern OBJLIST<ToastNotification> lstNotifications;
+
+struct callbackArg
+{
+ MCONTACT hContact;
+ ToastNotification* notification;
+};
+
#define MODULE "Toaster"
extern HINSTANCE g_hInstance;
void InitServices();
-
+int OnPreShutdown(WPARAM, LPARAM);
#endif //_COMMON_H_
|