tcerror.h 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. #ifndef _TCERROR_H_
  7. #define _TCERROR_H_
  8. #define TCBASE 7500
  9. #define ERROR_INCOMPATIBLE_TCI_VERSION (TCBASE+1)
  10. #define ERROR_INVALID_SERVICE_TYPE (TCBASE+2)
  11. #define ERROR_INVALID_TOKEN_RATE (TCBASE+3)
  12. #define ERROR_INVALID_PEAK_RATE (TCBASE+4)
  13. #define ERROR_INVALID_SD_MODE (TCBASE+5)
  14. #define ERROR_INVALID_QOS_PRIORITY (TCBASE+6)
  15. #define ERROR_INVALID_TRAFFIC_CLASS (TCBASE+7)
  16. #define ERROR_INVALID_ADDRESS_TYPE (TCBASE+8)
  17. #define ERROR_DUPLICATE_FILTER (TCBASE+9)
  18. #define ERROR_FILTER_CONFLICT (TCBASE+10)
  19. #define ERROR_ADDRESS_TYPE_NOT_SUPPORTED (TCBASE+11)
  20. #define ERROR_TC_SUPPORTED_OBJECTS_EXIST (TCBASE+12)
  21. #define ERROR_INCOMPATABLE_QOS (TCBASE+13)
  22. #define ERROR_TC_NOT_SUPPORTED (TCBASE+14)
  23. #define ERROR_TC_OBJECT_LENGTH_INVALID (TCBASE+15)
  24. #define ERROR_INVALID_FLOW_MODE (TCBASE+16)
  25. #define ERROR_INVALID_DIFFSERV_FLOW (TCBASE+17)
  26. #define ERROR_DS_MAPPING_EXISTS (TCBASE+18)
  27. #define ERROR_INVALID_SHAPE_RATE (TCBASE+19)
  28. #define ERROR_INVALID_DS_CLASS (TCBASE+20)
  29. #define ERROR_TOO_MANY_CLIENTS (TCBASE+21)
  30. #endif