libguac 1.5.5
|
Function type definitions related to automatic handling of received "argv" instructions. More...
Go to the source code of this file.
Typedefs | |
typedef int | guac_argv_callback(guac_user *user, const char *mimetype, const char *name, const char *value, void *data) |
Callback which is invoked by the automatic "argv" handling when the full value of a received argument has been received. | |
Function type definitions related to automatic handling of received "argv" instructions.
typedef int guac_argv_callback(guac_user *user, const char *mimetype, const char *name, const char *value, void *data) |
Callback which is invoked by the automatic "argv" handling when the full value of a received argument has been received.
user | The user that opened the argument value stream. |
mimetype | The mimetype of the data that will be sent along the stream. |
name | The name of the connection parameter being updated. It is up to the implementation of this handler to decide whether and how to update a connection parameter. |
value | The value of the received argument. |
data | Any arbitrary data that was provided when the received argument was registered with guac_argv_register(). |