Documentation fix
This commit is contained in:
parent
2f2ab12c08
commit
9f763865db
@ -114,7 +114,7 @@ matrix_api_ban_user(MatrixAPI *api,
|
|||||||
* @callback: (scope async): the function to call when the request is
|
* @callback: (scope async): the function to call when the request is
|
||||||
* finished
|
* finished
|
||||||
* @user_data: user data to pass to the callback function
|
* @user_data: user data to pass to the callback function
|
||||||
* @room_alias: the alias (name) of the room
|
* @alias: the alias (name) of the room
|
||||||
* @is_public: if %TRUE, the room will be accessible for anyone
|
* @is_public: if %TRUE, the room will be accessible for anyone
|
||||||
* @invitees: (allow-none): list of user IDs to invite to the new room
|
* @invitees: (allow-none): list of user IDs to invite to the new room
|
||||||
*
|
*
|
||||||
|
@ -62,7 +62,7 @@ struct _MatrixAPIInterface {
|
|||||||
void (*create_room)(MatrixAPI *api,
|
void (*create_room)(MatrixAPI *api,
|
||||||
MatrixAPICallback callback,
|
MatrixAPICallback callback,
|
||||||
gpointer user_data,
|
gpointer user_data,
|
||||||
gchar *room_alias,
|
gchar *alias,
|
||||||
gboolean is_public,
|
gboolean is_public,
|
||||||
GStrv invitees);
|
GStrv invitees);
|
||||||
void (*join_room)(MatrixAPI *api,
|
void (*join_room)(MatrixAPI *api,
|
||||||
|
@ -489,8 +489,8 @@ matrix_http_api_login_or_register(MatrixAPI *api,
|
|||||||
/**
|
/**
|
||||||
* matrix_http_api_login:
|
* matrix_http_api_login:
|
||||||
* @api: a #MatrixAPI implementation
|
* @api: a #MatrixAPI implementation
|
||||||
* @callback: (scope async): the function to call when the request if
|
* @callback: (scope async): the function to call when the request is
|
||||||
* finished
|
* finished
|
||||||
* @user_data: user data to pass to the callback function
|
* @user_data: user data to pass to the callback function
|
||||||
* @login_type: the login type to use
|
* @login_type: the login type to use
|
||||||
* @parameters: parameters to send with the login request
|
* @parameters: parameters to send with the login request
|
||||||
@ -569,8 +569,8 @@ matrix_http_api_get_base_url(MatrixHTTPAPI *api)
|
|||||||
/**
|
/**
|
||||||
* matrix_http_api_register_account:
|
* matrix_http_api_register_account:
|
||||||
* @api: a #MatrixAPI implementation
|
* @api: a #MatrixAPI implementation
|
||||||
* @callback: (scope async): the function to call when the request if
|
* @callback: (scope async): the function to call when the request is
|
||||||
* finished
|
* finished
|
||||||
* @user_data: user data to pass to the callback function
|
* @user_data: user data to pass to the callback function
|
||||||
* @login_type: the login type to use
|
* @login_type: the login type to use
|
||||||
* @parameters: parameters to send with the registration request
|
* @parameters: parameters to send with the registration request
|
||||||
|
Loading…
Reference in New Issue
Block a user