diff options
Diffstat (limited to 'protocols/Yahoo/util.cpp')
-rw-r--r-- | protocols/Yahoo/util.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/protocols/Yahoo/util.cpp b/protocols/Yahoo/util.cpp index 6be9439380..62afef5a56 100644 --- a/protocols/Yahoo/util.cpp +++ b/protocols/Yahoo/util.cpp @@ -301,7 +301,7 @@ void CYahooProto::ShowError(const char *title, const char *buff) ShowNotification(title, buff, NIIF_ERROR);
}
-INT_PTR __cdecl CYahooProto::OnSettingChanged(WPARAM wParam, LPARAM lParam)
+int __cdecl CYahooProto::OnSettingChanged(WPARAM wParam, LPARAM lParam)
{
DBCONTACTWRITESETTING *cws = (DBCONTACTWRITESETTING *) lParam;
@@ -322,6 +322,14 @@ INT_PTR __cdecl CYahooProto::OnSettingChanged(WPARAM wParam, LPARAM lParam) return 0;
}
+bool CYahooProto::IsMyContact(HANDLE hContact)
+{
+ if (!hContact) return false;
+
+ char* szProto = (char*)CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM)hContact, 0);
+ return szProto && !strcmp(szProto, m_szModuleName);
+}
+
char* YAHOO_GetContactName( HANDLE hContact )
{
return ( char* )YAHOO_CallService( MS_CLIST_GETCONTACTDISPLAYNAME, (WPARAM) hContact, 0 );
|