blob: 40c0c1077c9567bfbe72ec7b21782614c11599c4 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 */
 |