diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-15 13:10:56 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-15 13:10:56 +0000 |
commit | 9c4370db4f2e5f5ee77e03a8c5c4c1e226274768 (patch) | |
tree | e6b9936fb28e85ec702d03ff8db294d2b2f50c15 /protocols/SkypeWeb/src/stdafx.h | |
parent | de6edc08ee0c1faffb6456abc31fc9bd8a5b0e32 (diff) |
SkypeWeb: refactoring part 1
git-svn-id: http://svn.miranda-ng.org/main/trunk@14960 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/stdafx.h')
-rw-r--r-- | protocols/SkypeWeb/src/stdafx.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/stdafx.h b/protocols/SkypeWeb/src/stdafx.h index 94faae7e08..28665e61da 100644 --- a/protocols/SkypeWeb/src/stdafx.h +++ b/protocols/SkypeWeb/src/stdafx.h @@ -61,6 +61,23 @@ extern HANDLE g_hCallEvent; #define SKYPE_ENDPOINTS_HOST "client-s.gateway.messenger.live.com"
+struct LoginInfo
+{
+ struct
+ {
+ ptrA szToken;
+ } api;
+
+ struct
+ {
+ ptrA szToken;
+ ptrA szId;
+ ptrA szServer;
+ } endpoint;
+
+ ptrA szSkypename;
+};
+
#include "version.h"
#include "resource.h"
#include "skype_icons.h"
@@ -69,6 +86,7 @@ extern HANDLE g_hCallEvent; #include "skype_options.h"
#include "skype_trouter.h"
#include "skype_db.h"
+//#include "skype_chatrooms.h"
#include "skype_utils.h"
#include "http_request.h"
#include "requests\login.h"
|