Initial connect message implementation

This commit is contained in:
Michael Jumper
2010-11-25 17:19:11 -08:00
parent 7e0429a6aa
commit bb1ed2172a
3 changed files with 76 additions and 24 deletions

View File

@@ -58,7 +58,19 @@ typedef struct guac_instruction {
/**
* Frees all memory allocated to the given instruction.
* Frees all memory allocated to the given instruction opcode
* and arguments. The instruction structure itself will not
* be freed.
*
* @param instruction The instruction to free.
*/
void guac_free_instruction_data(guac_instruction* instruction);
/**
* Frees all memory allocated to the given instruction. This
* includes freeing memory allocated for the structure
* itself.
*
* @param instruction The instruction to free.
*/