summaryrefslogtreecommitdiff
path: root/toxav/toxav.h
diff options
context:
space:
mode:
authormannol <eniz_vukovic@hotmail.com>2015-05-12 22:16:00 +0200
committermannol <eniz_vukovic@hotmail.com>2015-05-12 22:16:00 +0200
commit64037017cc3804d9921bd9780570685871df8f0b (patch)
tree66b78681cb2fe50318d0c3fed9dba7009baafc88 /toxav/toxav.h
parent73fbc2296117f8a507e8ed9399e1cf13f19ddb19 (diff)
Fix bug
Diffstat (limited to 'toxav/toxav.h')
-rw-r--r--toxav/toxav.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toxav/toxav.h b/toxav/toxav.h
index 994b3009..b0e7e37d 100644
--- a/toxav/toxav.h
+++ b/toxav/toxav.h
@@ -190,7 +190,7 @@ bool toxav_answer(ToxAV *av, uint32_t friend_number, uint32_t audio_bit_rate, ui
190 * :: Call state graph 190 * :: Call state graph
191 * 191 *
192 ******************************************************************************/ 192 ******************************************************************************/
193typedef enum TOXAV_CALL_STATE { 193enum TOXAV_CALL_STATE {
194 /** 194 /**
195 * The flag that marks that friend is sending audio. 195 * The flag that marks that friend is sending audio.
196 */ 196 */
@@ -218,7 +218,7 @@ typedef enum TOXAV_CALL_STATE {
218 * state will never be triggered in combination with other call states. 218 * state will never be triggered in combination with other call states.
219 */ 219 */
220 TOXAV_CALL_STATE_ERROR = 32768 220 TOXAV_CALL_STATE_ERROR = 32768
221} TOXAV_CALL_STATE; 221};
222/** 222/**
223 * The function type for the `call_state` callback. 223 * The function type for the `call_state` callback.
224 * 224 *