Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorheadkaze <headkaze@gmail.com>2021-12-17 15:05:02 +0300
committerheadkaze <headkaze@gmail.com>2021-12-17 15:05:02 +0300
commit2143beac690d085506a02fd6038d5dae8e16e724 (patch)
tree61de674281f1a41aa5d5d8e472a5210753b1400d /src
parentf26ff86d520cd384c1dfa7a1b099225cd9c1b321 (diff)
Add Keyboard mapping per client RDP
Diffstat (limited to 'src')
-rw-r--r--src/remmina_pref.c2
-rw-r--r--src/remmina_pref.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/remmina_pref.c b/src/remmina_pref.c
index 680ea7a98..4ef129e4c 100644
--- a/src/remmina_pref.c
+++ b/src/remmina_pref.c
@@ -57,7 +57,7 @@ const gchar *default_resolutions = "640x480,800x600,1024x768,1152x864,1280x960,1
const gchar *default_keystrokes = "Send hello world§hello world\\n";
gchar *remmina_keymap_file;
-static GHashTable *remmina_keymap_table = NULL;
+GHashTable *remmina_keymap_table = NULL;
/* We could customize this further if there are more requirements */
static const gchar *default_keymap_data = "# Please check gdk/gdkkeysyms.h for a full list of all key names or hex key values\n"
diff --git a/src/remmina_pref.h b/src/remmina_pref.h
index 10a37c060..fbb95f003 100644
--- a/src/remmina_pref.h
+++ b/src/remmina_pref.h
@@ -229,6 +229,7 @@ typedef struct _RemminaPref {
#define SSH_SOCKET_TCP_KEEPCNT 3
#define SSH_SOCKET_TCP_USER_TIMEOUT 60000 // 60 seconds
+extern GHashTable *remmina_keymap_table;
extern const gchar *default_resolutions;
extern gchar *remmina_pref_file;
extern gchar *remmina_colors_file;