err.h 241 B

1234567891011
  1. #ifndef _DS_ERR_H_
  2. #define _DS_ERR_H_
  3. /* error code definition */
  4. #define DS_ERR_OK 0
  5. #define DS_ERR_MEM -1
  6. #define DS_ERR_EMPTY -2
  7. #define DS_ERR_TARGET_NOT_FOUND -3
  8. #define DS_ERR_PARAMS -4
  9. #define DS_ERR_TARGET_EXISTS -5
  10. #endif