Add a task to copy configuration files to user's HOME dir from data dir for multi...
[platform/core/uifw/e17.git] / src / modules / illume-keyboard / e_kbd_send.h
1 #ifndef E_KBD_SEND_H
2 #define E_KBD_SEND_H
3
4 typedef enum _Kbd_Mod
5 {
6    KBD_MOD_SHIFT = (1 << 0),
7    KBD_MOD_CTRL  = (1 << 1),
8    KBD_MOD_ALT   = (1 << 2),
9    KBD_MOD_WIN   = (1 << 3)
10 } Kbd_Mod;
11
12 EAPI void e_kbd_send_string_press(const char *str, Kbd_Mod mod);
13 EAPI void e_kbd_send_keysym_press(const char *key, Kbd_Mod mod);
14
15 #endif