diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/char_to_key_code.h | 17 | ||||
-rw-r--r-- | lib/char_to_key_code.m | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/lib/char_to_key_code.h b/lib/char_to_key_code.h new file mode 100644 index 0000000..40c0c10 --- /dev/null +++ b/lib/char_to_key_code.h @@ -0,0 +1,17 @@ +// +// char_to_key_code.h +// DomeKey +// +// Created by tw on 8/27/18. +// Copyright © 2018 tw. All rights reserved. +// + +#ifndef char_to_key_code_h +#define char_to_key_code_h + +#import <Carbon/Carbon.h> + +NSString* keyCodeToString(CGKeyCode keyCode); +NSNumber* charToKeyCode(const char c); + +#endif /* char_to_key_code_h */ diff --git a/lib/char_to_key_code.m b/lib/char_to_key_code.m index 210536d..ab4da15 100644 --- a/lib/char_to_key_code.m +++ b/lib/char_to_key_code.m @@ -1,4 +1,4 @@ -#import <Carbon/Carbon.h> +#import "char_to_key_code.h" // Théo Winterhalter // https://stackoverflow.com/users/1275975/th%c3%a9o-winterhalter |