Home | History | Annotate | Download | only in include
      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 
      9 #define TCBASE 7500
     10 
     11 #define ERROR_INCOMPATIBLE_TCI_VERSION (TCBASE+1)
     12 #define ERROR_INVALID_SERVICE_TYPE (TCBASE+2)
     13 #define ERROR_INVALID_TOKEN_RATE (TCBASE+3)
     14 #define ERROR_INVALID_PEAK_RATE (TCBASE+4)
     15 #define ERROR_INVALID_SD_MODE (TCBASE+5)
     16 #define ERROR_INVALID_QOS_PRIORITY (TCBASE+6)
     17 #define ERROR_INVALID_TRAFFIC_CLASS (TCBASE+7)
     18 #define ERROR_INVALID_ADDRESS_TYPE (TCBASE+8)
     19 #define ERROR_DUPLICATE_FILTER (TCBASE+9)
     20 #define ERROR_FILTER_CONFLICT (TCBASE+10)
     21 #define ERROR_ADDRESS_TYPE_NOT_SUPPORTED (TCBASE+11)
     22 #define ERROR_TC_SUPPORTED_OBJECTS_EXIST (TCBASE+12)
     23 #define ERROR_INCOMPATABLE_QOS (TCBASE+13)
     24 #define ERROR_TC_NOT_SUPPORTED (TCBASE+14)
     25 #define ERROR_TC_OBJECT_LENGTH_INVALID (TCBASE+15)
     26 #define ERROR_INVALID_FLOW_MODE (TCBASE+16)
     27 #define ERROR_INVALID_DIFFSERV_FLOW (TCBASE+17)
     28 #define ERROR_DS_MAPPING_EXISTS (TCBASE+18)
     29 #define ERROR_INVALID_SHAPE_RATE (TCBASE+19)
     30 #define ERROR_INVALID_DS_CLASS (TCBASE+20)
     31 #define ERROR_TOO_MANY_CLIENTS (TCBASE+21)
     32 
     33 #endif
     34