Fix newlines.

This commit is contained in:
Michael Jumper 2012-09-20 21:08:33 -07:00
parent f4f4e04e0e
commit ddf705ad26

View File

@ -59,12 +59,15 @@
typedef struct guac_resource guac_resource;
/**
* Handler which begins resource transfer when the client accepts an exposed resource.
* Handler which begins resource transfer when the client accepts an exposed
* resource.
*/
typedef int guac_resource_accept_handler(guac_resource* resource, const char* mimetype);
typedef int guac_resource_accept_handler(guac_resource* resource,
const char* mimetype);
/**
* Handler which cancels resource transfer when the client rejects an exposed resource.
* Handler which cancels resource transfer when the client rejects an exposed
* resource.
*/
typedef int guac_resource_reject_handler(guac_resource* resource);
@ -80,12 +83,14 @@ struct guac_resource {
int index;
/**
* Handler which will be called when this resource is accepted by the client.
* Handler which will be called when this resource is accepted by the
* client.
*/
guac_resource_accept_handler* accept_handler;
/**
* Handler which will be called when this resource is rejected by the client.
* Handler which will be called when this resource is rejected by the
* client.
*/
guac_resource_reject_handler* reject_handler;