summaryrefslogtreecommitdiff
path: root/plugins/BasicHistory/stdafx.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-05 19:31:43 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-05 19:31:43 +0000
commit528949c71a12f54dc7b71133a32d9ee91cb53298 (patch)
treea2b57251631adf14f00a4d775b6894da06f670fc /plugins/BasicHistory/stdafx.h
parenta6fb825ecbf5313b010fd8cf37754f494cabddc5 (diff)
BasicHistory - the alternative for history++
git-svn-id: http://svn.miranda-ng.org/main/trunk@317 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/BasicHistory/stdafx.h')
-rw-r--r--plugins/BasicHistory/stdafx.h88
1 files changed, 88 insertions, 0 deletions
diff --git a/plugins/BasicHistory/stdafx.h b/plugins/BasicHistory/stdafx.h
new file mode 100644
index 0000000000..bc670d4358
--- /dev/null
+++ b/plugins/BasicHistory/stdafx.h
@@ -0,0 +1,88 @@
+// stdafx.h : include file for standard system include files,
+// or project specific include files that are used frequently, but
+// are changed infrequently
+//
+
+#pragma once
+
+#include "targetver.h"
+
+#ifndef _WIN64
+#define _USE_32BIT_TIME_T
+#endif
+
+#define _CRT_SECURE_NO_WARNINGS
+#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
+// Windows Header Files:
+#include <windows.h>
+#include <windowsx.h>
+#include <richedit.h>
+#include <time.h>
+#include <commctrl.h>
+#include <commdlg.h>
+#include <tom.h>
+#include <richole.h>
+#include <Shlobj.h>
+#include <shellapi.h>
+
+#include <map>
+#include <hash_set>
+#include <vector>
+#include <queue>
+#include <locale>
+#include <string>
+#include <fstream>
+
+#define MIRANDA_VER 0x0900
+#define MIRANDA_CUSTOM_LP
+
+#include <newpluginapi.h>
+#include <m_langpack.h>
+#include <m_system.h>
+#include <m_clist.h>
+#include <m_skin.h>
+#include <m_history.h>
+#include <m_database.h>
+#include <m_icolib.h>
+#include <m_timezones.h>
+#include <m_contacts.h>
+#include <m_protocols.h>
+#include <m_button.h>
+#include <m_options.h>
+#include <m_fontservice.h>
+#include <m_hotkeys.h>
+#include <m_message.h>
+#include <m_protosvc.h>
+#include <m_icq.h>
+#include <m_clc.h>
+#include <m_utils.h>
+#include <m_popup.h>
+
+#include <win2k.h>
+
+#include "m_updater.h"
+#include "m_smileyadd.h"
+#include "m_toolbar.h"
+#include "m_metacontacts.h"
+
+#define HISTORY_HK_FIND 100
+#define HISTORY_HK_FINDNEXT 101
+#define HISTORY_HK_FINDPREV 102
+#define HISTORY_HK_MATCHCASE 103
+#define HISTORY_HK_MATCHWHOLE 104
+#define HISTORY_HK_SHOWCONTACTS 105
+#define HISTORY_HK_ONLYIN 106
+#define HISTORY_HK_ONLYOUT 107
+#define HISTORY_HK_DELETE 108
+#define HISTORY_HK_ONLYGROUP 109
+#define HISTORY_HK_EXRHTML 110
+#define HISTORY_HK_EXPHTML 111
+#define HISTORY_HK_EXTXT 112
+#define HISTORY_HK_EXBIN 113
+#define HISTORY_HK_IMPBIN 114
+#define HISTORY_HK_EXDAT 115
+#define HISTORY_HK_IMPDAT 116
+#define HISTORY_HK_ALLCONTACTS 117
+
+#define EVENTTYPE_STATUSCHANGE 25368
+#define EVENTTYPE_SMTPSIMPLE 2350 \ No newline at end of file