summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src/common.h
diff options
context:
space:
mode:
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