diff --git a/protocols/rdp/include/rdp_pointer.h b/protocols/rdp/include/rdp_pointer.h index ff870913..641eb660 100644 --- a/protocols/rdp/include/rdp_pointer.h +++ b/protocols/rdp/include/rdp_pointer.h @@ -20,6 +20,7 @@ * the Initial Developer. All Rights Reserved. * * Contributor(s): + * David PHAM-VAN Ulteo SAS - http://www.ulteo.com * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or @@ -59,5 +60,7 @@ typedef struct guac_rdp_pointer { void guac_rdp_pointer_new(rdpContext* context, rdpPointer* pointer); void guac_rdp_pointer_set(rdpContext* context, rdpPointer* pointer); void guac_rdp_pointer_free(rdpContext* context, rdpPointer* pointer); +void guac_rdp_pointer_set_null(rdpContext* context); +void guac_rdp_pointer_set_default(rdpContext* context); #endif diff --git a/protocols/rdp/src/client.c b/protocols/rdp/src/client.c index d6110184..e7d4b0a3 100644 --- a/protocols/rdp/src/client.c +++ b/protocols/rdp/src/client.c @@ -151,6 +151,8 @@ boolean rdp_freerdp_pre_connect(freerdp* instance) { pointer->New = guac_rdp_pointer_new; pointer->Free = guac_rdp_pointer_free; pointer->Set = guac_rdp_pointer_set; + pointer->SetNull = guac_rdp_pointer_set_null; + pointer->SetDefault = guac_rdp_pointer_set_default; graphics_register_pointer(context->graphics, pointer); xfree(pointer); diff --git a/protocols/rdp/src/rdp_pointer.c b/protocols/rdp/src/rdp_pointer.c index ac46aac9..4ef2ecb3 100644 --- a/protocols/rdp/src/rdp_pointer.c +++ b/protocols/rdp/src/rdp_pointer.c @@ -20,6 +20,7 @@ * the Initial Developer. All Rights Reserved. * * Contributor(s): + * David PHAM-VAN Ulteo SAS - http://www.ulteo.com * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or @@ -101,3 +102,9 @@ void guac_rdp_pointer_free(rdpContext* context, rdpPointer* pointer) { } +void guac_rdp_pointer_set_null(rdpContext* context) { +} + +void guac_rdp_pointer_set_default(rdpContext* context) { +} +