From 8ce5e1cab2973384c80941a9fbf4022f6d1a323e Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 7 Mar 2016 12:43:54 -0800 Subject: [PATCH] GUAC-1389: Correct input.h parameter documention with respect to standards. --- src/protocols/rdp/input.h | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/protocols/rdp/input.h b/src/protocols/rdp/input.h index 55432ac6..740df356 100644 --- a/src/protocols/rdp/input.h +++ b/src/protocols/rdp/input.h @@ -31,10 +31,17 @@ * events to the RDP server. The key events sent will depend on the current * keymap. * - * @param client The guac_client associated with the current RDP session. - * @param keysym The keysym being pressed or released. - * @param pressed Zero if the keysym is being released, non-zero otherwise. - * @return Zero if the keys were successfully sent, non-zero otherwise. + * @param client + * The guac_client associated with the current RDP session. + * + * @param keysym + * The keysym being pressed or released. + * + * @param pressed + * Zero if the keysym is being released, non-zero otherwise. + * + * @return + * Zero if the keys were successfully sent, non-zero otherwise. */ int guac_rdp_send_keysym(guac_client* client, int keysym, int pressed); @@ -44,7 +51,8 @@ int guac_rdp_send_keysym(guac_client* client, int keysym, int pressed); * state (0 being released and 1 being pressed), that key will be updated * to the "to" state. * - * @param client The guac_client associated with the current RDP session. + * @param client + * The guac_client associated with the current RDP session. * * @param keysym_string * A NULL-terminated array of keysyms, each of which will be updated.