aheinecke@60: #ifndef ERRORCODES_H aheinecke@60: #define ERRORCODES_H aheinecke@60: aheinecke@60: /* No begin certificate / end certificate could be found */ aheinecke@60: #define ERR_INVALID_INPUT_NO_LIST 2 aheinecke@60: /* Too much input for the installer process */ aheinecke@60: #define ERR_TOO_MUCH_INPUT 3 aheinecke@64: /* Invalid signature */ aheinecke@64: #define ERR_INVALID_SIGNATURE 4 aheinecke@64: /* No instructions */ aheinecke@64: #define ERR_NO_INSTRUCTIONS 5 aheinecke@64: /* Instructions not valid (certs not part of certificate list) */ aheinecke@64: #define ERR_INVALID_INSTRUCTIONS 6 aheinecke@68: /* Failed to access specified store */ aheinecke@68: #define ERR_STORE_ACCESS_DENIED 7 aheinecke@68: /* Failed to add certificate to store */ aheinecke@68: #define ERR_STORE_ADD_FAILURE 7 aheinecke@91: /* Generic invalid input */ aheinecke@91: #define ERR_INVALID_INPUT 8 aheinecke@60: aheinecke@60: #endif