diff options
author | Szymon Tokarz <wsx22@o2.pl> | 2013-05-27 22:29:01 +0000 |
---|---|---|
committer | Szymon Tokarz <wsx22@o2.pl> | 2013-05-27 22:29:01 +0000 |
commit | c628a13d98fde8d2555cc6fa8628e0b575021bd4 (patch) | |
tree | f25e89f902c0ac82c8f138badbca7f29d331ba18 /plugins/MirFox/src/common.h | |
parent | 2f2175b11692b8561fd1018161a62685910d08b0 (diff) |
MirFox plugin for Miranda NG added
Version 0.5.0.0
Compatible Firefox addon is now available at:
https://addons.mozilla.org/pl/firefox/addon/mirfox/versions/0.5.0.0
or http://wsx22.xpdev-hosted.com/
git-svn-id: http://svn.miranda-ng.org/main/trunk@4826 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirFox/src/common.h')
-rw-r--r-- | plugins/MirFox/src/common.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/plugins/MirFox/src/common.h b/plugins/MirFox/src/common.h new file mode 100644 index 0000000000..d0a0c2ff5a --- /dev/null +++ b/plugins/MirFox/src/common.h @@ -0,0 +1,52 @@ +#include "MirFoxCommons_pch.h"
+
+
+#pragma comment(lib, "comctl32.lib")
+#include <commctrl.h>
+
+
+
+#define MIRANDA_VER 0x0A00
+
+
+
+//Miranda headers
+#include <win2k.h>
+#include <newpluginapi.h>
+#include <m_system.h>
+#include <m_database.h>
+#include <m_langpack.h>
+#include <m_options.h>
+#include <m_clistint.h>
+#include <m_protosvc.h>
+#include <m_popup.h>
+#include <m_message.h>
+//for future use #include <m_clist.h>
+
+
+#define PLUGIN_DB_ID "MirFox"
+#define PLUGIN_OPTIONS_NAME "MirFox"
+
+
+
+
+//for MirandaUtils.h and MirfoxData.h and MirfoxMiranda.h
+#include "MirFoxCommons_logger.h"
+
+//for MirfoxMiranda
+#include "MirFoxCommons_sharedMemory.h"
+#include "MirFoxCommons_messageQueueBySM.h"
+
+//for MirandaUtils.h
+#include <iostream> //for ostringstream
+#include <sstream> //for ostringstream
+#include <locale> //for use_facet
+#include <map> //for map
+
+#include <winsock.h> //needed for m_netlib.h
+#include <m_netlib.h>
+
+//for MirfoxData.h
+#include <boost/algorithm/string.hpp> //for boost::iequals
+#include <boost/algorithm/string/replace.hpp> //for boost::replace_all
+
|