summaryrefslogtreecommitdiff
path: root/toxav/msi.h
diff options
context:
space:
mode:
Diffstat (limited to 'toxav/msi.h')
-rw-r--r--toxav/msi.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/toxav/msi.h b/toxav/msi.h
index 1ece8817..d63f2441 100644
--- a/toxav/msi.h
+++ b/toxav/msi.h
@@ -159,9 +159,9 @@ void msi_register_callback(MSISession *session, MSICallbackType callback, MSICal
159/** 159/**
160 * Send invite request to friend_id. 160 * Send invite request to friend_id.
161 */ 161 */
162int msi_invite ( MSISession *session, 162int msi_invite ( MSISession *session,
163 int32_t *call_index, 163 int32_t *call_index,
164 const MSICSettings* csettings, 164 const MSICSettings *csettings,
165 uint32_t rngsec, 165 uint32_t rngsec,
166 uint32_t friend_id ); 166 uint32_t friend_id );
167 167
@@ -173,7 +173,7 @@ int msi_hangup ( MSISession *session, int32_t call_index );
173/** 173/**
174 * Answer active call request. 174 * Answer active call request.
175 */ 175 */
176int msi_answer ( MSISession *session, int32_t call_index, const MSICSettings* csettings ); 176int msi_answer ( MSISession *session, int32_t call_index, const MSICSettings *csettings );
177 177
178/** 178/**
179 * Cancel request. 179 * Cancel request.
@@ -185,19 +185,19 @@ int msi_cancel ( MSISession *session, int32_t call_index, uint32_t peer, const c
185 */ 185 */
186int msi_reject ( MSISession *session, int32_t call_index, const char *reason ); 186int msi_reject ( MSISession *session, int32_t call_index, const char *reason );
187 187
188/** 188/**
189 * Terminate the call. 189 * Terminate the call.
190 */ 190 */
191int msi_stopcall ( MSISession *session, int32_t call_index ); 191int msi_stopcall ( MSISession *session, int32_t call_index );
192 192
193/** 193/**
194 * Change codec settings of the current call. 194 * Change codec settings of the current call.
195 */ 195 */
196int msi_change_csettings ( MSISession* session, int32_t call_index, const MSICSettings* csettings ); 196int msi_change_csettings ( MSISession *session, int32_t call_index, const MSICSettings *csettings );
197 197
198/** 198/**
199 * Main msi loop 199 * Main msi loop
200 */ 200 */
201void msi_do( MSISession* session ); 201void msi_do( MSISession *session );
202 202
203#endif /* __TOXMSI */ 203#endif /* __TOXMSI */