summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src/common.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2015-03-17 20:33:47 +0000
committerAlexander Lantsev <aunsane@gmail.com>2015-03-17 20:33:47 +0000
commitdd3d0e59dcd34beb222fcf612a51d3fee82c0e43 (patch)
tree0ae5a6e0a83399036d1452256ee3f89dc6da8872 /protocols/SkypeWeb/src/common.h
parent076fa9b3142f55fc736fbf58b20bfa45973acd68 (diff)
SkypeWeb: initial commit
git-svn-id: http://svn.miranda-ng.org/main/trunk@12424 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/common.h')
-rw-r--r--protocols/SkypeWeb/src/common.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/common.h b/protocols/SkypeWeb/src/common.h
new file mode 100644
index 0000000000..511fafb404
--- /dev/null
+++ b/protocols/SkypeWeb/src/common.h
@@ -0,0 +1,60 @@
+#ifndef _COMMON_H_
+#define _COMMON_H_
+
+#include <windows.h>
+#include <time.h>
+#include <commctrl.h>
+
+#include <string>
+#include <vector>
+#include <regex>
+#include <map>
+
+#include <newpluginapi.h>
+
+#include <m_protoint.h>
+#include <m_protomod.h>
+#include <m_protosvc.h>
+
+#include <m_database.h>
+#include <m_langpack.h>
+#include <m_clist.h>
+#include <m_options.h>
+#include <m_netlib.h>
+#include <m_popup.h>
+#include <m_icolib.h>
+#include <m_userinfo.h>
+#include <m_addcontact.h>
+#include <m_message.h>
+#include <m_avatars.h>
+#include <m_skin.h>
+#include <m_chat.h>
+#include <m_genmenu.h>
+#include <m_clc.h>
+#include <m_clistint.h>
+#include <m_string.h>
+#include <m_json.h>
+#include <m_timezones.h>
+
+struct CSkypeProto;
+
+#include "version.h"
+#include "resource.h"
+#include "skype_icons.h"
+#include "skype_menus.h"
+#include "http_request.h"
+#include "requests\login.h"
+#include "requests\logout.h"
+#include "request_queue.h"
+#include "skype_proto.h"
+
+extern HINSTANCE g_hInstance;
+
+#define MODULE "SKYPE"
+
+#define SKYPE_SETTINGS_ID "Login"
+#define SKYPE_SETTINGS_PASSWORD "Password"
+#define SKYPE_SETTINGS_GROUP "DefaultGroup"
+
+
+#endif //_COMMON_H_ \ No newline at end of file