diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-23 11:41:12 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-23 11:41:12 +0000 |
commit | b256b6cca9913c8b8142cd9b4c9560ea2f72becc (patch) | |
tree | 77ff7c334f4458b82416a20376403cf6effeb485 /plugins/CrashDumper/src/utils.h | |
parent | 40781d33923f2d80c080cc15befc980e008b6687 (diff) |
added precompiled header
added version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@3720 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CrashDumper/src/utils.h')
-rw-r--r-- | plugins/CrashDumper/src/utils.h | 41 |
1 files changed, 12 insertions, 29 deletions
diff --git a/plugins/CrashDumper/src/utils.h b/plugins/CrashDumper/src/utils.h index e1f4c1919c..d82b32b703 100644 --- a/plugins/CrashDumper/src/utils.h +++ b/plugins/CrashDumper/src/utils.h @@ -17,48 +17,31 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
#define _CRT_SECURE_NO_WARNINGS
-#define MIRANDA_VER 0x0A00
-#include <m_stdhdr.h>
-#include "sdkstuff.h"
-
-#ifdef _MSC_VER
+#include <windows.h>
+#include <richedit.h>
#include <delayimp.h>
-#endif
-
-#include <stdio.h>
-
-#include "resource.h"
#include <newpluginapi.h>
-
-#ifdef _MSC_VER
-
-#pragma warning( push )
-#pragma warning( disable : 4201 4100 )
-#include <m_database.h>
-#pragma warning( pop )
-
-#else
-
#include <m_database.h>
-
-#endif
-
-#ifdef __GNUC__
-#endif
-
-#include <m_system.h>
-#include <m_utils.h>
#include <m_langpack.h>
#include <m_clist.h>
#include <m_skin.h>
#include <m_hotkeys.h>
#include <m_protocols.h>
-#include <m_help.h>
#include <m_icolib.h>
+#include <m_stdhdr.h>
+#include <m_options.h>
+#include <m_popup.h>
+#include <m_netlib.h>
+
+#include "m_folders.h"
+#include "m_toptoolbar.h"
+#include "sdkstuff.h"
+#include "version.h"
#include "bkstring.h"
+#include "resource.h"
#define MS_PROTO_ENUMPROTOS "Proto/EnumProtos"
|