summaryrefslogtreecommitdiff
path: root/plugins/Toaster/src/stdafx.h
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2015-12-29 19:59:31 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2015-12-29 19:59:31 +0000
commit544fb33475eb7ea1735f9e19f78dcf3c5e1ceb66 (patch)
tree9bcf88888f81aeb7e17ad20d9e7fd6fefa684725 /plugins/Toaster/src/stdafx.h
parent99034f294331209fbfa1d5efacf7fb25f88e227d (diff)
Toaster: memleaks fix, code clenup
git-svn-id: http://svn.miranda-ng.org/main/trunk@15967 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Toaster/src/stdafx.h')
-rw-r--r--plugins/Toaster/src/stdafx.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/plugins/Toaster/src/stdafx.h b/plugins/Toaster/src/stdafx.h
index 3faa59fec7..5b4df4701c 100644
--- a/plugins/Toaster/src/stdafx.h
+++ b/plugins/Toaster/src/stdafx.h
@@ -19,7 +19,6 @@
#include <m_chat.h>
#include <m_skin.h>
#include <m_imgsrvc.h>
-#include <m_netlib.h>
#include <m_xml.h>
#include <m_options.h>
#include <m_gui.h>
@@ -27,22 +26,22 @@
#include "version.h"
#include "resource.h"
-const wchar_t AppUserModelID[] = _T("MirandaNG");
+const wchar_t AppUserModelID[] = L"MirandaNG";
#define MODULE "Toaster"
#define CHECKHR(x) if (FAILED(x)) return x;
-#include "string_reference_wrapper.h"
-#include "toast_notification.h"
-#include "add_to_start_menu.h"
-#include "options.h"
-#include "structs.h"
-#include "images.h"
-
+class ToastNotification;
extern HINSTANCE g_hInstance;
extern mir_cs csNotifications;
-extern OBJLIST<ToastNotification> lstNotifications;
extern wchar_t wszTempDir[MAX_PATH];
+extern OBJLIST<ToastNotification> lstNotifications;
+
+#include "string_reference_wrapper.h"
+#include "utils.h"
+#include "options.h"
+#include "structs.h"
+#include "toast_notification.h"
void CleanupClasses();
void InitServices();