mirror of
https://github.com/ars3niy/tdlib-purple
synced 2025-08-22 01:49:29 +00:00
11 lines
279 B
C
11 lines
279 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);
|
|
|
|
#endif
|