Added handling for keyboard events
[libguac-client-rdp.git] / include / rdp_client.h
index 10e6a78..be0dc8d 100644 (file)
@@ -63,11 +63,14 @@ typedef struct rdp_guac_client_data {
     guac_rdp_color foreground;
     guac_rdp_color background;
 
+    const guac_layer* current_surface;
+
 } rdp_guac_client_data;
 
 int rdp_guac_client_free_handler(guac_client* client);
 int rdp_guac_client_handle_messages(guac_client* client);
 int rdp_guac_client_mouse_handler(guac_client* client, int x, int y, int mask);
+int rdp_guac_client_key_handler(guac_client* client, int keysym, int pressed);
 
 #endif