/* useful_constants_oc.h (c) 1999-2013 Kari Laitinen 1999-05-28 file created. 2013-06-16 An Objective-C version was created 2013-06-16 last modification This is a general-purpose includable file containing various textual constants to be used as status values for state variables. Textual constants should be used as values for state variables to make programs more readable. This file can be included in any program where state variables are used. */ #define SEARCH_NOT_READY 1 #define SEARCH_IS_READY 2 #define SEARCH_WAS_SUCCESSFUL 3 #define SEARCH_NOT_SUCCESSFUL 4 #define OPERATION_NOT_READY 5 #define OPERATION_IS_READY 6 #define OPERATION_WAS_INTERRUPTED 7 #define OPERATION_IS_SUCCESFUL 9 #define OPERATION_WAS_SUCCESSFUL 10 #define OPERATION_NOT_SUCCESSFUL 11 #define SOME_KEY_WAS_PRESSED 21 #define NO_KEYS_PRESSED 22 #define NO_KEYS_PRESSED_YET 23 #define WRONG_KEY_WAS_PRESSED 24