GUACAMOLE-422: Fix function declaration for pushing settings.

This commit is contained in:
Nick Couchman 2018-11-11 17:25:12 -05:00
parent 4bd19160de
commit 9a944637be

View File

@ -552,13 +552,17 @@ extern const char* GUAC_RDP_CLIENT_ARGS[];
/** /**
* Save all given settings to the given freerdp instance. * Save all given settings to the given freerdp instance.
* *
* @param client
* The guac_client object providing the settings.
*
* @param guac_settings * @param guac_settings
* The guac_rdp_settings object to save. * The guac_rdp_settings object to save.
* *
* @param rdp * @param rdp
* The RDP instance to save settings to. * The RDP instance to save settings to.
*/ */
void guac_rdp_push_settings(guac_rdp_settings* guac_settings, freerdp* rdp); void guac_rdp_push_settings(guac_client* client,
guac_rdp_settings* guac_settings, freerdp* rdp);
/** /**
* Returns the width of the RDP session display. * Returns the width of the RDP session display.