-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.h
More file actions
14 lines (14 loc) · 698 Bytes
/
Copy patherrors.h
File metadata and controls
14 lines (14 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* error codes */
#define INSUFFICIENT_NUMBER_OF_PARAMETERS 1
#define INVALID_INPUT_CHARACTER 2
#define INVALID_INDEX 3
#define NON_NUMERIC_CHARACTER 4
#define IMPOSSIBLE_PLUGBOARD_CONFIGURATION 5
#define INCORRECT_NUMBER_OF_PLUGBOARD_PARAMETERS 6
#define INVALID_ROTOR_MAPPING 7
#define NO_ROTOR_STARTING_POSITION 8
#define INVALID_REFLECTOR_MAPPING 9
#define INCORRECT_NUMBER_OF_REFLECTOR_PARAMETERS 10
#define ERROR_OPENING_CONFIGURATION_FILE 11
#define INSUFFICIENT_MEMORY 12
#define NO_ERROR 0