diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-05-03 18:55:51 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-05-03 18:55:51 +0000 |
commit | 466affa123edae9767fa6b17334c050302865efd (patch) | |
tree | cfd14e1d21349524178d710d6c6e821969ff0b6d /protocols/SkypeWeb/src/skype_proto.h | |
parent | 9c6381373b4654b8a17f6679dacda941538a50fb (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@13402 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.h b/protocols/SkypeWeb/src/skype_proto.h index 9fcb5c1f21..9c9ac6df8a 100644 --- a/protocols/SkypeWeb/src/skype_proto.h +++ b/protocols/SkypeWeb/src/skype_proto.h @@ -71,6 +71,9 @@ public: static void InitMenus();
static void UninitMenus();
+ //popups
+ void InitPopups();
+
// languages
static void InitLanguages();
@@ -96,6 +99,9 @@ private: static INT_PTR CALLBACK PasswordEditorProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
+ HANDLE
+ m_hPopupClassCall;
+
// accounts
static LIST<CSkypeProto> Accounts;
@@ -284,8 +290,8 @@ private: int SkypeToMirandaStatus(const char *status);
char *MirandaToSkypeStatus(int status);
- static void ShowNotification(const TCHAR *message, int flags = 0, MCONTACT hContact = NULL);
- static void ShowNotification(const TCHAR *caption, const TCHAR *message, int flags = 0, MCONTACT hContact = NULL, int type = 0);
+ void ShowNotification(const TCHAR *message, int flags = 0, MCONTACT hContact = NULL);
+ void ShowNotification(const TCHAR *caption, const TCHAR *message, int flags = 0, MCONTACT hContact = NULL, int type = 0);
static bool IsFileExists(std::tstring path);
static LRESULT CALLBACK PopupDlgProcCall(HWND hPopup, UINT uMsg, WPARAM wParam, LPARAM lParam);
|