forked from dirkz/multibox-OS-X
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.h
28 lines (22 loc) · 838 Bytes
/
Constants.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// Constants.h
// MultiBoxOSX
//
// Created by KARL BUNCH on 10/29/16.
//
//
#ifndef Constants_h
#define Constants_h
// Set to 1 for debugging/logging of key events
#define MULTIBOXOSX_LOGKEYS 0
// Largest supported KeyCode value
#define kMBO_MaxKeyCode 256
static NSString * const kMBO_CurrentPreferencesVersion = @"3";
static NSString * const kMBO_Preference_Version = @"preferencesVersion";
static NSString * const kMBO_Preference_TargetAppPath = @"targetAppPath";
static NSString * const kMBO_Preference_FavoriteLayout = @"favoriteLayout";
static NSString * const kMBO_InstanceNumber = @"instanceNumber";
static NSString * const kMBO_Preference_KeyBindings = @"KeyBindings";
// Notifications
static NSString * const kMBO_Notification_RecordKeysButtonClicked = @"MBONoticeRecordKeysButtonClicked";
#endif /* Constants_h */