From 2798536a7afe09deac5d92f917cb6391001b6b59 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sat, 12 Mar 2016 19:56:30 -0800 Subject: [PATCH] GUAC-236: Document transfer as currently unimplemented (rarely used). --- src/guacenc/instruction-transfer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/guacenc/instruction-transfer.c b/src/guacenc/instruction-transfer.c index 3643404f..c2508f62 100644 --- a/src/guacenc/instruction-transfer.c +++ b/src/guacenc/instruction-transfer.c @@ -47,10 +47,11 @@ int guacenc_handle_transfer(guacenc_display* display, int argc, char** argv) { int dst_x = atoi(argv[7]); int dst_y = atoi(argv[8]); - /* STUB */ + /* TODO: Unimplemented for now (rarely used) */ guacenc_log(GUAC_LOG_DEBUG, "transform: src_layer=%i (%i, %i) %ix%i " "function=0x%X dst_layer=%i (%i, %i)", src_index, src_x, src_y, src_w, src_h, function, dst_index, dst_x, dst_y); + return 0; }