ShortcutErrorType.h
 1  #pragma once
 2  
 3  // Type to store codes for different errors
 4  enum class ShortcutErrorType
 5  {
 6      NoError,
 7      SameKeyPreviouslyMapped,
 8      MapToSameKey,
 9      ConflictingModifierKey,
10      SameShortcutPreviouslyMapped,
11      MapToSameShortcut,
12      ConflictingModifierShortcut,
13      WinL,
14      CtrlAltDel,
15      RemapUnsuccessful,
16      SaveFailed,
17      ShortcutStartWithModifier,
18      ShortcutCannotHaveRepeatedModifier,
19      ShortcutAtleast2Keys,
20      ShortcutOneActionKey,
21      ShortcutNotMoreThanOneActionKey,
22      ShortcutMaxShortcutSizeOneActionKey,
23      ShortcutDisableAsActionKey
24  };