diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-30 12:34:33 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-30 12:34:33 +0000 |
commit | 444f4637b88efa00c4cdfcc92e1d157bd6fe4008 (patch) | |
tree | 827554621142740c26a57c5cf17339d0ab88ff13 /protocols/Skype/src/skype_proto.h | |
parent | 3828ee35499c53c7d53a88c6551a2a828ab8b7cf (diff) |
preparing for saving own info in db and on server
git-svn-id: http://svn.miranda-ng.org/main/trunk@4574 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index 15d1b57b25..d123f04d43 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -181,6 +181,13 @@ public: bool IsOnline();
static std::map<std::wstring, std::wstring> languages;
+ BYTE NeedUpdate;
+ void SaveToDB(HWND hwndPage, int iPage);
+ void SaveToServer();
+
+ static void ShowNotification(const wchar_t *message, int flags = 0, HANDLE hContact = NULL);
+ static void ShowNotification(const wchar_t *caption, const wchar_t *message, int flags = 0, HANDLE hContact = NULL);
+
protected:
CAccount::Ref account;
CContact::Refs contactList;
@@ -340,9 +347,6 @@ protected: int SkypeToMirandaLoginError(CAccount::LOGOUTREASON logoutReason);
- static void ShowNotification(const wchar_t *message, int flags = 0, HANDLE hContact = NULL);
- static void ShowNotification(const wchar_t *caption, const wchar_t *message, int flags = 0, HANDLE hContact = NULL);
-
static char *RemoveHtml(const char *data);
void SetServerStatus(int iStatus);
|