summaryrefslogtreecommitdiff
path: root/toxav/toxav.h
diff options
context:
space:
mode:
authormannol <eniz_vukovic@hotmail.com>2015-06-27 19:20:52 +0200
committermannol <eniz_vukovic@hotmail.com>2015-06-27 19:20:52 +0200
commit13148d7d7c7fc6ea6ef7e592dfd8b0bf3cfd1244 (patch)
treeca5eeba5db9996157136a329225d09a3553a6283 /toxav/toxav.h
parent2ecb71bb1e02a3542700ba9e8bcc372e203b8437 (diff)
Added support for old groupchats
Diffstat (limited to 'toxav/toxav.h')
-rw-r--r--toxav/toxav.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/toxav/toxav.h b/toxav/toxav.h
index 8362edb3..0a25fc96 100644
--- a/toxav/toxav.h
+++ b/toxav/toxav.h
@@ -237,7 +237,8 @@ typedef enum TOXAV_ERR_CALL {
237 * 237 *
238 * It is the client's responsibility to stop ringing after a certain timeout, 238 * It is the client's responsibility to stop ringing after a certain timeout,
239 * if such behaviour is desired. If the client does not stop ringing, the 239 * if such behaviour is desired. If the client does not stop ringing, the
240 * library will not stop until the friend is disconnected. 240 * library will not stop until the friend is disconnected. Audio and video
241 * receiving are both enabled by default.
241 * 242 *
242 * @param friend_number The friend number of the friend that should be called. 243 * @param friend_number The friend number of the friend that should be called.
243 * @param audio_bit_rate Audio bit rate in Kb/sec. Set this to 0 to disable 244 * @param audio_bit_rate Audio bit rate in Kb/sec. Set this to 0 to disable
@@ -288,7 +289,8 @@ typedef enum TOXAV_ERR_ANSWER {
288 * Accept an incoming call. 289 * Accept an incoming call.
289 * 290 *
290 * If answering fails for any reason, the call will still be pending and it is 291 * If answering fails for any reason, the call will still be pending and it is
291 * possible to try and answer it later. 292 * possible to try and answer it later. Audio and video receiving are both
293 * enabled by default.
292 * 294 *
293 * @param friend_number The friend number of the friend that is calling. 295 * @param friend_number The friend number of the friend that is calling.
294 * @param audio_bit_rate Audio bit rate in Kb/sec. Set this to 0 to disable 296 * @param audio_bit_rate Audio bit rate in Kb/sec. Set this to 0 to disable
@@ -637,6 +639,8 @@ typedef void toxav_video_receive_frame_cb(ToxAV *toxAV, uint32_t friend_number,
637 */ 639 */
638void toxav_callback_video_receive_frame(ToxAV *toxAV, toxav_video_receive_frame_cb *callback, void *user_data); 640void toxav_callback_video_receive_frame(ToxAV *toxAV, toxav_video_receive_frame_cb *callback, void *user_data);
639 641
642#include "toxav_old.h"
643
640#ifdef __cplusplus 644#ifdef __cplusplus
641} 645}
642#endif 646#endif