diff options
author | George Hazan <george.hazan@gmail.com> | 2023-12-03 17:14:30 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-12-03 17:14:30 +0300 |
commit | 1338ad89ee45bdb681c531476dca00a377d7d033 (patch) | |
tree | 3eae8ad7620848a1a8b12ced532d826aae81a224 /protocols/Tox/src | |
parent | 8a0d55713496fe7c8eecc0267d775b1bb29e0842 (diff) |
PROTO_INTERFACE::SendMsg: second parameter became a reply event id
Diffstat (limited to 'protocols/Tox/src')
-rw-r--r-- | protocols/Tox/src/tox_proto.cpp | 2 | ||||
-rw-r--r-- | protocols/Tox/src/tox_proto.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Tox/src/tox_proto.cpp b/protocols/Tox/src/tox_proto.cpp index cfabeefac9..d701171a0f 100644 --- a/protocols/Tox/src/tox_proto.cpp +++ b/protocols/Tox/src/tox_proto.cpp @@ -139,7 +139,7 @@ HWND CToxProto::CreateExtendedSearchUI(HWND owner) return OnCreateExtendedSearchUI(owner);
}
-int CToxProto::SendMsg(MCONTACT hContact, const char *msg)
+int CToxProto::SendMsg(MCONTACT hContact, MEVENT, const char *msg)
{
return OnSendMessage(hContact, msg);
}
diff --git a/protocols/Tox/src/tox_proto.h b/protocols/Tox/src/tox_proto.h index f69c695874..5277caa0ba 100644 --- a/protocols/Tox/src/tox_proto.h +++ b/protocols/Tox/src/tox_proto.h @@ -55,7 +55,7 @@ public: HANDLE SearchAdvanced(HWND owner) override;
HWND CreateExtendedSearchUI(HWND owner) override;
- int SendMsg(MCONTACT hContact, const char *msg) override;
+ int SendMsg(MCONTACT hContact, MEVENT, const char *msg) override;
HANDLE SendFile(MCONTACT hContact, const wchar_t *, wchar_t **ppszFiles) override;
|