diff options
author | George Hazan <ghazan@miranda.im> | 2023-02-11 18:58:29 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-02-11 18:58:29 +0300 |
commit | 13c65091dba7803ddc8b604732d3cf3e8cb2fe5d (patch) | |
tree | 77d39ba8d777f24c022d9141fa709165a2e802da /include | |
parent | 70ff82fd507835546c5f9a54e593f8868ab50891 (diff) |
PS_CREATEACCMGRUI is obsoleted and converted into event
Diffstat (limited to 'include')
-rw-r--r-- | include/m_protoint.h | 3 | ||||
-rw-r--r-- | include/m_protosvc.h | 11 |
2 files changed, 3 insertions, 11 deletions
diff --git a/include/m_protoint.h b/include/m_protoint.h index 184d36d4c5..ed8b0f907f 100644 --- a/include/m_protoint.h +++ b/include/m_protoint.h @@ -258,6 +258,9 @@ public: // called when an account's contact is deleted
virtual void OnContactDeleted(MCONTACT);
+ // called when the Account Manager needs to draw short account's options
+ virtual MWindow OnCreateAccMgrUI(MWindow hwndParent);
+
// called when an event is altered in database
virtual void OnEventEdited(MCONTACT, MEVENT);
diff --git a/include/m_protosvc.h b/include/m_protosvc.h index 031622a3a5..32fcc8bc7b 100644 --- a/include/m_protosvc.h +++ b/include/m_protosvc.h @@ -291,17 +291,6 @@ static __inline unsigned long Proto_Status2Flag(int status) #define PS_AUTHDENY "/AuthDeny"
///////////////////////////////////////////////////////////////////////////////
-// Create account manager UI form
-// wParam = 0
-// lParam = (LPARAM)(HWND)hwndAccMgr
-// Returns handle on newly created form.
-// Size for best fit is 186x134 DLUs, please avoid groupboxes
-// paddind and advanced options. This should provide minimal setup
-// for initial connect.
-
-#define PS_CREATEACCMGRUI "/CreateAccMgrUI"
-
-///////////////////////////////////////////////////////////////////////////////
// Send a basic search request
// wParam = 0
// lParam = (LPARAM)(const wchar_t*)szId
|