summaryrefslogtreecommitdiff
path: root/plugins/TooltipNotify/src/stdafx.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-03-10 12:42:08 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-03-10 12:42:08 +0000
commit102a413497df49bd2af8ee0a1770718fa0ecfcc2 (patch)
treef89a458502fb1679be3eeccc0bd0a8fbb3914a08 /plugins/TooltipNotify/src/stdafx.h
parentcf72bb04a7650ae5e1b7011d17ce572bb06896b0 (diff)
added precompiled header
added version info git-svn-id: http://svn.miranda-ng.org/main/trunk@3956 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TooltipNotify/src/stdafx.h')
-rw-r--r--plugins/TooltipNotify/src/stdafx.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/plugins/TooltipNotify/src/stdafx.h b/plugins/TooltipNotify/src/stdafx.h
index d00b996556..72c8c13416 100644
--- a/plugins/TooltipNotify/src/stdafx.h
+++ b/plugins/TooltipNotify/src/stdafx.h
@@ -3,35 +3,33 @@
// are changed infrequently
//
-#pragma once
-
#define _CRT_SECURE_NO_WARNINGS
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#define _WIN32_WINNT 0x0500
-// Windows header files
#include <windows.h>
#include <commctrl.h>
-#include <commdlg.h>
-
-// C/C++ header files
#include <cassert>
#include <algorithm>
#include <vector>
-// Miranda IM header files
#include <newpluginapi.h>
#include <m_clist.h>
#include <m_skin.h>
-#include <m_system.h>
#include <m_database.h>
#include <m_clui.h>
#include <m_ignore.h>
#include <m_options.h>
#include <m_protosvc.h>
#include <m_langpack.h>
-#include <m_utils.h>
#include <m_clc.h>
#include <m_fontservice.h>
+#include <win2k.h>
-#define ARRAY_SIZE(arr) (sizeof(arr)/sizeof(arr[0])) \ No newline at end of file
+#include "version.h"
+#include "TooltipNotify.h"
+#include "DbHelpers.h"
+#include "Tooltip.h"
+#include "Settings.h"
+#include "resource.h"
+#include "Utils.h"