/** * FreeRDP: A Remote Desktop Protocol Client * XKB-based keyboard mapping * * Copyright 2009 Marc-Andre Moreau * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef __FREERDP_KBD_H #define __FREERDP_KBD_H #include #include #define RDP_KEYBOARD_LAYOUT_TYPE_STANDARD 1 #define RDP_KEYBOARD_LAYOUT_TYPE_VARIANT 2 #define RDP_KEYBOARD_LAYOUT_TYPE_IME 4 typedef struct rdp_keyboard_layout { uint32 code; char name[50]; } rdpKeyboardLayout; FREERDP_API rdpKeyboardLayout* freerdp_kbd_get_layouts(int types); FREERDP_API uint32 freerdp_kbd_init(void *dpy, uint32 keyboard_layout_id); FREERDP_API uint8 freerdp_kbd_get_scancode_by_keycode(uint8 keycode, boolean* extended); FREERDP_API uint8 freerdp_kbd_get_keycode_by_scancode(uint8 scancode, boolean extended); FREERDP_API uint8 freerdp_kbd_get_scancode_by_virtualkey(int vkcode, boolean* extended); #endif /* __FREERDP_KBD_H */