error_codes.h (263B)
1 #ifndef ERROR_CODES_H 2 #define ERROR_CODES_H 3 4 /** 5 * Taler client Cash Digitizer errors. 6 */ 7 enum DIGITIZER_ErrorCode 8 { 9 /** 10 * indicate success (no error) 11 */ 12 DIGITIZER_EC_NONE = 0, 13 14 /** 15 * non specific fail 16 */ 17 DIGITIZER_EC_GENERIC = 1, 18 }; 19 20 #endif