summaryrefslogtreecommitdiff
path: root/src/ccerror.h
blob: e9d0d6ccf3d46a0b166d2ee3401ba3f92a6d1e01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef CC_ERROR_H
#define CC_ERROR_H

#define CC_ERROR_BASE 500
#define CC_ERROR_FILE_BASE 100
#define CC_ERROR_FUNCTION_BASE 20
#define CC_ERROR_NONE  0

#define CC_ERROR_UTIL_GETCCMODE CC_ERROR_BASE //500
#define CC_ERROR_UTIL_RESETSBFCCM   CC_ERROR_UTIL_GETCCMODE+CC_ERROR_FUNCTION_BASE
#define CC_ERROR_ZEROISE CC_ERROR_UTIL_GETCCMODE+CC_ERROR_FILE_BASE
#define CC_ERROR_VERIFY 100 //100

#endif