diff options
Diffstat (limited to 'android/skin/keyboard.h')
-rw-r--r-- | android/skin/keyboard.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/android/skin/keyboard.h b/android/skin/keyboard.h index 1c3b088..a86b132 100644 --- a/android/skin/keyboard.h +++ b/android/skin/keyboard.h @@ -24,8 +24,9 @@ typedef void (*SkinKeyCommandFunc)( void* opaque, SkinKeyCommand command, int typedef void (*SkinKeyEventFunc)( void* opaque, AndroidKeyCode code, int down ); -/* If kcm_file_path is NULL, create a keyboard using the default built-in qwerty2 charmap */ -extern SkinKeyboard* skin_keyboard_create( const char* kcm_file_path, int use_raw_keys ); +extern SkinKeyboard* skin_keyboard_create_from_aconfig( AConfig* aconfig, int use_raw_keys ); + +extern SkinKeyboard* skin_keyboard_create_from_kcm( const char* kcm_file_path, int use_raw_keys ); extern void skin_keyboard_set_keyset( SkinKeyboard* keyboard, SkinKeyset* kset ); |