summaryrefslogtreecommitdiff
path: root/toxav/msi.h
diff options
context:
space:
mode:
Diffstat (limited to 'toxav/msi.h')
-rw-r--r--[-rwxr-xr-x]toxav/msi.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/toxav/msi.h b/toxav/msi.h
index 9c748303..042f3f0f 100755..100644
--- a/toxav/msi.h
+++ b/toxav/msi.h
@@ -63,8 +63,8 @@ typedef enum {
63 * 63 *
64 */ 64 */
65typedef struct _MSICall { /* Call info structure */ 65typedef struct _MSICall { /* Call info structure */
66 struct _MSISession* session; /* Session pointer */ 66 struct _MSISession *session; /* Session pointer */
67 67
68 MSICallState state; 68 MSICallState state;
69 69
70 MSICallType type_local; /* Type of payload user is ending */ 70 MSICallType type_local; /* Type of payload user is ending */
@@ -146,7 +146,7 @@ typedef enum {
146 * @param id The id. 146 * @param id The id.
147 * @return void 147 * @return void
148 */ 148 */
149void msi_register_callback(MSICallback callback, MSICallbackID id, void* userdata); 149void msi_register_callback(MSICallback callback, MSICallbackID id, void *userdata);
150 150
151 151
152/** 152/**
@@ -179,7 +179,7 @@ int msi_terminate_session ( MSISession *session );
179 * @param friend_id The friend. 179 * @param friend_id The friend.
180 * @return int 180 * @return int
181 */ 181 */
182int msi_invite ( MSISession *session, int32_t* call_index, MSICallType call_type, uint32_t rngsec, uint32_t friend_id ); 182int msi_invite ( MSISession *session, int32_t *call_index, MSICallType call_type, uint32_t rngsec, uint32_t friend_id );
183 183
184 184
185/** 185/**
@@ -214,7 +214,7 @@ int msi_answer ( MSISession *session, int32_t call_index, MSICallType call_type
214 * @param reason Set optional reason header. Pass NULL if none. 214 * @param reason Set optional reason header. Pass NULL if none.
215 * @return int 215 * @return int
216 */ 216 */
217int msi_cancel ( MSISession* session, int32_t call_index, uint32_t peer, const char* reason ); 217int msi_cancel ( MSISession *session, int32_t call_index, uint32_t peer, const char *reason );
218 218
219 219
220/** 220/**