mirror of
https://github.com/CovidBraceletPrj/CovidBracelet.git
synced 2025-01-09 04:44:22 +01:00
10 lines
288 B
C
10 lines
288 B
C
#ifndef ENS_ERROR_H
|
|
#define ENS_ERROR_H
|
|
|
|
#define ENS_INTERR 1 // internal error
|
|
#define ENS_NOENT 2 // entry not found or invalid
|
|
#define ENS_DELENT 3 // entry got deleted
|
|
#define ENS_ADDRINU 4 // address alread in use or corrupt
|
|
#define ENS_INVARG 5 // invalid argument
|
|
|
|
#endif |