diff options
Diffstat (limited to 'protocols/Tox/src/tox_contacts.cpp')
-rw-r--r-- | protocols/Tox/src/tox_contacts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Tox/src/tox_contacts.cpp b/protocols/Tox/src/tox_contacts.cpp index fdcc378691..c972a2c07c 100644 --- a/protocols/Tox/src/tox_contacts.cpp +++ b/protocols/Tox/src/tox_contacts.cpp @@ -152,7 +152,7 @@ void CToxProto::LoadFriendList(void*) }
}
-int CToxProto::OnRequestAuth(MCONTACT hContact, LPARAM lParam)
+INT_PTR CToxProto::OnRequestAuth(WPARAM hContact, LPARAM lParam)
{
if (!IsOnline())
{
@@ -182,7 +182,7 @@ int CToxProto::OnRequestAuth(MCONTACT hContact, LPARAM lParam) return 0;
}
-int CToxProto::OnGrantAuth(MCONTACT hContact, LPARAM)
+INT_PTR CToxProto::OnGrantAuth(WPARAM hContact, LPARAM)
{
if (!IsOnline())
{
|