conf join

This commit is contained in:
Green Sky 2023-04-08 23:24:58 +02:00
parent ba37daad0e
commit 9a63edb018
No known key found for this signature in database
3 changed files with 6 additions and 0 deletions

View File

@ -233,6 +233,10 @@ std::vector<uint8_t> ToxIPCClient::toxHash(const std::vector<uint8_t>& data) {
CL_BODY(toxHash, data)
}
std::tuple<std::optional<uint32_t>, Tox_Err_Conference_Join> ToxIPCClient::toxConferenceJoin(uint32_t friend_number, const std::vector<uint8_t>& cookie) {
CL_BODY(toxConferenceJoin, friend_number, cookie)
}
Tox_Err_Conference_Send_Message ToxIPCClient::toxConferenceSendMessage(uint32_t conference_number, Tox_Message_Type type, std::string_view message) {
CL_BODY(toxConferenceSendMessage, conference_number, type, std::string{message})
}

View File

@ -55,6 +55,7 @@ class ToxIPCClient : public ToxI, public ToxEventProviderBase {
// files
// conferece
std::tuple<std::optional<uint32_t>, Tox_Err_Conference_Join> toxConferenceJoin(uint32_t friend_number, const std::vector<uint8_t>& cookie) override;
Tox_Err_Conference_Send_Message toxConferenceSendMessage(uint32_t conference_number, Tox_Message_Type type, std::string_view message) override;
Tox_Err_Friend_Custom_Packet toxFriendSendLossyPacket(uint32_t friend_number, const std::vector<uint8_t>& data) override;

View File

@ -31,6 +31,7 @@ using ToxI_rpc = zpp::bits::rpc<
zpp::bits::bind<&ToxI::toxFriendGetPublicKey, "ToxI::toxFriendGetPublicKey"_sha1_int>,
zpp::bits::bind<&ToxI::toxFriendSendMessage_str, "ToxI::toxFriendSendMessage"_sha1_int>,
zpp::bits::bind<&ToxI::toxHash, "ToxI::toxHash"_sha1_int>, // TODO: remove lol
zpp::bits::bind<&ToxI::toxConferenceJoin, "ToxI::toxConferenceJoin"_sha1_int>,
zpp::bits::bind<&ToxI::toxConferenceSendMessage_str, "ToxI::toxConferenceSendMessage"_sha1_int>,
zpp::bits::bind<&ToxI::toxFriendSendLossyPacket, "ToxI::toxFriendSendLossyPacket"_sha1_int>,
zpp::bits::bind<&ToxI::toxFriendSendLosslessPacket, "ToxI::toxFriendSendLosslessPacket"_sha1_int>,