2
0
mirror of https://github.com/ars3niy/tdlib-purple synced 2025-08-22 09:57:52 +00:00
tdlib-purple/call.h
2020-07-28 16:10:02 +02:00

14 lines
525 B
C

#ifndef _CALL_H
#define _CALL_H
#include "transceiver.h"
#include "account-data.h"
bool initiateCall(int32_t userId, TdAccountData &account, TdTransceiver &transceiver);
void updateCall(const td::td_api::call &call, TdAccountData &account, TdTransceiver &transceiver);
void discardCurrentCall(TdAccountData &account, TdTransceiver &transceiver);
void showCallMessage(const td::td_api::chat &chat, const TgMessageInfo &message,
const td::td_api::messageCall &callEnded, TdAccountData &account);
#endif