/usr/i686-w64-mingw32/include/tcerror.h is in mingw-w64-i686-dev 2.0.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | /**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#ifndef _TCERROR_H_
#define _TCERROR_H_
#define TCBASE 7500
#define ERROR_INCOMPATIBLE_TCI_VERSION (TCBASE+1)
#define ERROR_INVALID_SERVICE_TYPE (TCBASE+2)
#define ERROR_INVALID_TOKEN_RATE (TCBASE+3)
#define ERROR_INVALID_PEAK_RATE (TCBASE+4)
#define ERROR_INVALID_SD_MODE (TCBASE+5)
#define ERROR_INVALID_QOS_PRIORITY (TCBASE+6)
#define ERROR_INVALID_TRAFFIC_CLASS (TCBASE+7)
#define ERROR_INVALID_ADDRESS_TYPE (TCBASE+8)
#define ERROR_DUPLICATE_FILTER (TCBASE+9)
#define ERROR_FILTER_CONFLICT (TCBASE+10)
#define ERROR_ADDRESS_TYPE_NOT_SUPPORTED (TCBASE+11)
#define ERROR_TC_SUPPORTED_OBJECTS_EXIST (TCBASE+12)
#define ERROR_INCOMPATABLE_QOS (TCBASE+13)
#define ERROR_TC_NOT_SUPPORTED (TCBASE+14)
#define ERROR_TC_OBJECT_LENGTH_INVALID (TCBASE+15)
#define ERROR_INVALID_FLOW_MODE (TCBASE+16)
#define ERROR_INVALID_DIFFSERV_FLOW (TCBASE+17)
#define ERROR_DS_MAPPING_EXISTS (TCBASE+18)
#define ERROR_INVALID_SHAPE_RATE (TCBASE+19)
#define ERROR_INVALID_DS_CLASS (TCBASE+20)
#define ERROR_TOO_MANY_CLIENTS (TCBASE+21)
#endif
|