summaryrefslogtreecommitdiff
path: root/toxav/msi.h
diff options
context:
space:
mode:
Diffstat (limited to 'toxav/msi.h')
-rw-r--r--toxav/msi.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/toxav/msi.h b/toxav/msi.h
index 84a30f63..a70685f8 100644
--- a/toxav/msi.h
+++ b/toxav/msi.h
@@ -103,8 +103,6 @@ typedef struct _MSISession {
103 int last_error_id; /* Determine the last error */ 103 int last_error_id; /* Determine the last error */
104 const uint8_t *last_error_str; 104 const uint8_t *last_error_str;
105 105
106 const uint8_t *ua_name;
107
108 void *agent_handler; /* Pointer to an object that is handling msi */ 106 void *agent_handler; /* Pointer to an object that is handling msi */
109 Messenger *messenger_handle; 107 Messenger *messenger_handle;
110 108
@@ -152,11 +150,10 @@ void msi_register_callback(MSICallback callback, MSICallbackID id);
152 * @brief Start the control session. 150 * @brief Start the control session.
153 * 151 *
154 * @param messenger Tox* object. 152 * @param messenger Tox* object.
155 * @param user_agent User agent, i.e. 'Venom'; 'QT-gui'
156 * @return MSISession* The created session. 153 * @return MSISession* The created session.
157 * @retval NULL Error occured. 154 * @retval NULL Error occured.
158 */ 155 */
159MSISession *msi_init_session ( Messenger *messenger, const uint8_t *ua_name ); 156MSISession *msi_init_session ( Messenger *messenger );
160 157
161 158
162/** 159/**