z/OS Communications Server: CMIP Services and Topology Agent Guide
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


C language header file (ACYAPHDH)

z/OS Communications Server: CMIP Services and Topology Agent Guide
SC27-3646-00

The following C language header file, ACYAPHDH, contains many declarations that are needed for compiling a C program that uses the CMIP services API. This header file is shipped in the AMACLIB data set of the SYS1.MACLIB data set.

 
/*                                                                   */ 00050000
/*   COPYRIGHT = LICENSED MATERIALS - PROPERTY OF IBM                */ 00100000
/*                                                                   */ 00150000
/*               THIS PRODUCT CONTAINS                               */ 00200000
/*               "RESTRICTED MATERIALS OF IBM"                       */ 00250000
/*                                                                   */ 00300000
/*               5695-117 (C) COPYRIGHT IBM CORP. 1994               */ 00350000
/*               ALL RIGHTS RESERVED.                                */ 00400000
/*                                                                   */ 00450000
/*               U.S. GOVERNMENT USERS RESTRICTED RIGHTS -           */ 00500000
/*               USE, DUPLICATION OR DISCLOSURE RESTRICTED           */ 00550000
/*               BY GSA ADP SCHEDULE CONTRACT WITH IBM CORP.         */ 00600000
/*                                                                   */ 00650000
/*               SEE COPYRIGHT INSTRUCTIONS.                         */ 00700000
/*                                                                   */ 00750000
/* $MAC(ACYAPHDH),COMP(CMIP),PROD(VTAM): CMIP MIB API declarations   */ 00800000
/*                                                                   */ 00850000
/* FLAG REASON   RELEASE DATE   ORIGIN  FLAG DESCRIPTORS             */ 00900000
/* ---- -------- ------- ------ ------  ---------------------------- */ 00950000
/* $L0= FYJDR002 VTAGENT 940523 647877: VTAM Agent                   */ 01000000
/* $Y1= P115000  VTAGENT 940801 792173: Add Address Fields to end    */ 01050000
/*                                      of Vector                    */ 01100000
/* $Y2= P115922  VTAGENT 940810 647877: Fix declaration of           */ 01150000
/*                                      MIBSendDeleteRegistration    */ 01200000
/*                                                                   */ 01250000
                                                                        01300000
#ifndef ACYAPHDH_INCLUDED           /* Only process these once.      */ 01350000
                                                                        01400000
#define ACYAPHDH_INCLUDED           /* Signify that these have been     01450000
                                       processed.                    */ 01500000
                                                                        01550000
#include                    /* Obtain definition of time_t for  01600000
                                       APIhdr.                       */ 01650000
                                                                        01700000
/*********************************************************************/ 01750000
/* The following constant is the maximum number of invoke ids which  */ 01800000
/* may concurrently active on the same connection.  It is the        */ 01850000
/* maximum allowed value for the max outstanding invoke ids          */ 01900000
/* parameter on MIBConnect.                                          */ 01950000
/*********************************************************************/ 02000000
                                                                        02050000
#define INVOKE_ID_MAX  0x00010000                                       02100000
                                                                        02150000
/*********************************************************************/ 02200000
/* The following constant is the length in bytes of the longest      */ 02250000
/* possible local identifier.                                        */ 02300000
/*********************************************************************/ 02350000
                                                                        02400000
#define LOCAL_ID_MAX   8                                                02450000
                                                                        02500000
/*********************************************************************/ 02550000
/* The following constants represent the settings of the msg_type    */ 02600000
/* field in the APIhdr structure.                                    */ 02650000
/*********************************************************************/ 02700000
                                                                        02750000
#define API_MSG                 0                                       02800000
#define API_REG_ACCEPT          1                                       02850000
#define API_SVC_COMPLETE        2                                       02900000
#define API_SVC_ERROR           3                                       02950000
#define API_TERMINATE_INSTANCE  4                                       03000000
                                                                        03050000
/*********************************************************************/ 03100000
/* The following constants represent the settings of the origin      */ 03150000
/* field in the APIhdr structure.                                    */ 03200000
/*********************************************************************/ 03250000
                                                                        03300000
#define ORIGIN_OBJ       0          /* The request which initiated      03350000
                                       this message was generated by    03400000
                                       the object which received this   03450000
                                       message.                      */ 03500000
                                                                        03550000
#define ORIGIN_REMOTE    1          /* The request which initiated      03600000
                                       this message was generated by    03650000
                                       an object other than the one     03700000
                                       which received this message      03750000
                                       (unless the object generated a   03800000
                                       request to itself).           */ 03850000
                                                                        03900000
/*********************************************************************/ 03950000
/* The following constants are used for the connection options       */ 04000000
/* parameter of MIBConnect.                                          */ 04050000
/*********************************************************************/ 04100000
                                                                        04150000
#define NO_CONNECT_OPTIONS     0                                        04200000
#define SHORT_NAMES            2                                        04250000
                                                                        04300000
/*********************************************************************/ 04350000
/* The following constants represent valid capabilities bits which   */ 04400000
/* can be specified in the capabilities parameter of MBReg().        */ 04450000
/*********************************************************************/ 04500000
                                                                        04550000
#define NO_CAPABILITIES  0          /* no special capabilities       */ 04600000
                                                                        04650000
#define SUBTREE_MANAGER  1          /* The object being registered is   04700000
                                       a subtree manager.            */ 04750000
                                                                        04800000
/*********************************************************************/ 04850000
/* The following constant is used as the value of the name type      */ 04900000
/* parameter of MIBSendRegister.                                     */ 04950000
/*********************************************************************/ 05000000
                                                                        05050000
#define DN_OF_INSTANCE   0                                              05100000
                                                                        05150000
/*********************************************************************/ 05200000
/* The following constants represent values for the dest type        */ 05250000
/* parameter of MIBSendCmipRequest.                                  */ 05300000
/*********************************************************************/ 05350000
                                                                        05400000
#define DS_NOT_PROVIDED       0                                         05450000
#define DS_FULL_DN            1                                         05500000
#define DS_ASSOC_HANDLE       2                                         05550000
#define DS_AE_TITLE           3                                         05600000
                                                                        05650000
/*********************************************************************/ 05700000
/* Structures                                                        */ 05750000
/*********************************************************************/ 05800000
                                                                        05850000
typedef struct APIhdr_tag                                               05900000
{                                                                       05950000
  unsigned char msg_type;                                               06000000
  unsigned char api_version;                                            06050000
  unsigned char origin;                                                 06100000
  unsigned char RESERVED1;          /* Applications must not use or     06150000
                                       depend on the value of this      06200000
                                       field in any way.             */ 06250000
  unsigned int invokeId;                                                06300000
  unsigned int connectId;                                               06350000
  unsigned int numLocalIds;                                             06400000
  time_t timestamp;                                                     06450000
  unsigned short resultCode;                                            06500000
  unsigned char RESERVED2??(2??);   /* Applications must not use or     06550000
                                       depend on the value of this      06600000
                                       field in any way.             */ 06650000
  unsigned int  RESERVED3;          /* Applications must not use or     06700000
                                       depend on the value of this      06750000
                                       field in any way.             */ 06800000
  unsigned char localIds??(8??);                                        06850000
} APIhdr;                                                               06900000
                                                                        06950000
/*********************************************************************/ 07000000
/* The following structures are used by CMIP applications using      */ 07050000
/* Data Spaces:                                                      */ 07100000
/*    (1) DataSpaceVector Format  (ISTRIV10_t)                       */ 07150000
/*    (2) Interface Control Block (ISTNMICB_t)                       */ 07200000
/*********************************************************************/ 07250000
                                                                        07300000
typedef struct ISTRIV10_tag                                             07350000
{                                                                       07400000
  char  RIV10LEN;                   /* VECTOR LENGTH                 */ 07450000
  char  RIV10KEY;                   /* VECTOR KEY                    */ 07500000
  char  RIV10DSN??(8??);            /* DATA SPACE NAME               */ 07550000
  char  RIV10NMI??(4??);            /* ADDRESS OF ISTNMICB IN DATA      07600000
                                        SPACE STORAGE                */ 07650000
  char  RIV10STK??(8??);            /* STOKEN OF DATA SPACE          */ 07700000
  char  reserved1??(4??);           /* reserved - not available      */ 07750000
  char  RIV10CDQ??(4??);            /* Address of Dequeue Routine    */ 07800000
  char  RIV10CRL??(4??);            /* Address of Release Routine    */ 07850000
  char  reserved2??(8??);           /* reserved                      */ 07900000
} ISTRIV10_t;                                                           07950000
                                                                        08000000
typedef struct ISTNMICB_tag                                             08050000
{                                                                       08100000
  char reserved1??(4??);            /* reserved - not available     */  08150000
  void *NMIPDCDQ;                   /* Address of Dequeue Routine   */  08200000
  void *NMIPDCRL;                   /* Address of Release Routine   */  08250000
} ISTNMICB_t;                                                           08300000
                                                                        08350000
/*********************************************************************/ 08400000
/* The following macro can be used to calculate the size of a given  */ 08450000
/* APIhdr (including any local identifiers present).                 */ 08500000
/*********************************************************************/ 08550000
                                                                        08600000
#define APIhdrSize(x,size)                          \                   08650000
        ((char *)&((x).localIds) - (char *)&(x) +   \                   08700000
        (size) * (x).numLocalIds)                                       08750000
                                                                        08800000
/*********************************************************************/ 08850000
/* The following type definitions are provided so that the C         */ 08900000
/* compiler can perform type checking on the MIB API calls.  The     */ 08950000
/* address of each MIB API routine should be given one of the        */ 09000000
/* following types.                                                  */ 09050000
/*********************************************************************/ 09100000
                                                                        09150000
typedef int MIBConnect_t(                                               09200000
               unsigned int,        /* API level                     */ 09250000
               int *,               /* link id                       */ 09300000
               unsigned int,        /* max outstanding invoke           09350000
                                       ids                           */ 09400000
               const char *,        /* application name              */ 09450000
               void *,              /* TPEND exit                    */ 09500000
               void *,              /* read queue exit               */ 09550000
               unsigned int *,      /* SMAE name buffer size         */ 09600000
               char *,              /* SMAE name buffer              */ 09650000
               unsigned int *,      /* System Object name buffer        09700000
                                       size                          */ 09750000
               char *,              /* System Object name            */ 09800000
               int,                 /* user data field               */ 09850000
               unsigned int *,      /* error flag                    */ 09900000
               char **,             /* VTAM release level            */ 09950000
               const char *,        /* password                      */ 10000000
               unsigned int,        /* length of DS vector           */ 10050000
               ISTRIV10_t *,        /* DS vector                     */ 10100000
               unsigned int,        /* local identifier length       */ 10150000
               unsigned int);       /* connection options            */ 10200000
                                                                        10250000
#pragma linkage(MIBConnect_t,OS)                                        10300000
                                                                        10350000
typedef int MIBDisconnect_t(                                            10400000
               int,                 /* link id                       */ 10450000
               unsigned int *);     /* return error flag             */ 10500000
                                                                        10550000
#pragma linkage(MIBDisconnect_t,OS)                                     10600000
                                                                        10650000
typedef int MIBSendRegister_t(                                          10700000
               int,                 /* link id                       */ 10750000
               unsigned int *,      /* returned invoke id            */ 10800000
               const void *,        /* local id                      */ 10850000
               const char *,        /* object class                  */ 10900000
               int,                 /* name type                     */ 10950000
               const char *,        /* distinguished name            */ 11000000
               const char *,        /* name binding oid              */ 11050000
               unsigned int,        /* capability flags              */ 11100000
               unsigned int,        /* allomorphs count              */ 11150000
               char **,             /* allomorphs array              */ 11200000
               unsigned int,        /* create handlers count         */ 11250000
               char **);            /* create handlers array         */ 11300000
                                                                        11350000
#pragma linkage(MIBSendRegister_t,OS)                                   11400000
                                                                        11450000
typedef int MIBSendDeleteRegistration_t(                                11500000
               int,                 /* link id                       */ 11550000
               unsigned int *,      /* returned invoke id            */ 11600000
               const void *,        /* local identifier              */ 11650000
               const char *);       /* DN                        @Y2C*/ 11700000
                                                                        11750000
#pragma linkage(MIBSendDeleteRegistration_t,OS)                         11800000
                                                                        11850000
typedef int MIBSendRequest_t(                                           11900000
               int,                 /* link id                       */ 11950000
               unsigned int *,      /* returned invoke id            */ 12000000
               const void *,        /* local identifier              */ 12050000
               const char *);       /* message                       */ 12100000
                                                                        12150000
#pragma linkage(MIBSendRequest_t,OS)                                    12200000
                                                                        12250000
typedef int MIBSendResponse_t(                                          12300000
               int,                 /* link id                       */ 12350000
               unsigned int,        /* invoke id                     */ 12400000
               const void *,        /* local identifier              */ 12450000
               const char *,        /* source                        */ 12500000
               const char *,        /* dest association handle       */ 12550000
               const char *);       /* message                       */ 12600000
                                                                        12650000
#pragma linkage(MIBSendResponse_t,OS)                                   12700000
                                                                        12750000
typedef int MIBSendCmipRequest_t(                                       12800000
               int,                 /* link id                       */ 12850000
               unsigned int,        /* argument type                 */ 12900000
               const char *,        /* argument                      */ 12950000
               const void *,        /* local identifier              */ 13000000
               const char *,        /* source                        */ 13050000
               unsigned int,        /* type of destination           */ 13100000
               const char *,        /* destination                   */ 13150000
               unsigned int *);     /* returned invoke id            */ 13200000
                                                                        13250000
#pragma linkage(MIBSendCmipRequest_t,OS)                                13300000
                                                                        13350000
typedef int MIBSendCmipResponse_t(                                      13400000
               int,                 /* link id                       */ 13450000
               unsigned int,        /* invoke id                     */ 13500000
               unsigned int,        /* last in chain?                */ 13550000
               unsigned int,        /* success?                      */ 13600000
               unsigned int,        /* argument type                 */ 13650000
               const char *,        /* argument                      */ 13700000
               const void *,        /* local identifier              */ 13750000
               const char *,        /* source                        */ 13800000
               const char *,        /* dest association handle       */ 13850000
               unsigned int *);     /* returned invoke id            */ 13900000
                                                                        13950000
#pragma linkage(MIBSendCmipResponse_t,OS)                               14000000
                                                                        14050000
/*********************************************************************/ 14100000
/*  The following constants are for the synchronous return codes     */ 14150000
/*  which may be received from one of the MIB API routines or via    */ 14200000
/*  an API_SVC_ERROR message from CMIP Services.                     */ 14250000
/*********************************************************************/ 14300000
                                                                        14350000
#define MB_ERR_ALLOC                                 7                  14400000
#define MB_ERR_MAX_OUTSTANDING                     932                  14450000
                                                                        14650000
/*********************************************************************/ 14700000
/*  The following constants are for the synchronous return codes     */ 14750000
/*  which may be received only from one of the MIB API routines.     */ 14800000
/*********************************************************************/ 14850000
                                                                        14900000
#define MB_ERR_INVALID_LINK_ID                     918                  14946800
#define MB_ERR_NOT_REGISTERED                      920                  14993600
#define MB_ERR_CONNECT                             945                  15040400
#define MB_WARN_DATA_SPACE_FULL                   1000                  15087200
#define MB_WARN_EXIT_FAILURE                      1001                  15134000
#define MB_DATA_ON_DATA_SPACE                     1002                  15180800
#define MB_ERR_INVALID_ENVIRONMENT                1003                  15227600
#define MB_ERR_INVALID_ARGUMENT                   1004                  15274400
#define MB_ERR_INVALID_ARGUMENT_TYPE              1005                  15321200
#define MB_ERR_INVALID_ASSOC_HANDLE               1006                  15368000
#define MB_ERR_INVALID_SMAE_NAME                  1007                  15414800
#define MB_ERR_CMIP_SERVICES_INACTIVE             1008                  15461600
#define MB_ERR_INVALID_DS_VECTOR                  1009                  15508400
#define MB_ERR_INVALID_DEST_TYPE                  1010                  15555200
#define MB_ERR_INVALID_DIST_NAME                  1011                  15602000
#define MB_ERR_INVALID_MAX_INVOKE_IDS             1012                  15648800
#define MB_ERR_INVALID_API_LEVEL                  1013                  15695600
#define MB_ERR_INVALID_APPL_NAME                  1014                  15742400
#define MB_ERR_INVALID_DS_VECTOR_SIZE             1015                  15789200
#define MB_ERR_INVALID_SMAE_NAME_SIZE             1016                  15836000
#define MB_ERR_INVALID_INVOKE_ID                  1017                  15882800
#define MB_ERR_MIBDISCONNECT                      1018                  15929600
#define MB_ERR_INVALID_MSG                        1019                  15976400
#define MB_ERR_INVALID_OBJECT_CLASS               1020                  16023200
#define MB_ERR_INVALID_READ_QUEUE_EXIT            1021                  16070000
#define MB_ERR_INVALID_SYSTEM_NAME_SIZE           1022                  16116800
#define MB_ERR_INVALID_LOCAL_ID_SIZE              1023                  16163600
#define MB_ERR_TRANSMIT                           1024                  16210400
#define MB_ERR_VTAM_INACTIVE                      1025                  16257200
#define MB_ERR_INVALID_USER_DATA                  1026                  16304000
#define MB_ERR_INVALID_ERROR_FLAG                 1027                  16350800
#define MB_ERR_INVALID_RELEASE_LEVEL              1028                  16397600
#define MB_ERR_INVALID_PASSWORD                   1029                  16444400
#define MB_ERR_INVALID_CAPABILITY_FLAGS           1030                  16491200
#define MB_ERR_INVALID_TPEND_EXIT                 1031                  16538000
#define MB_ERR_INVALID_LAST_IN_CHAIN_FLAG         1032                  16584800
#define MB_ERR_INVALID_SUCCESS_FLAG               1033                  16631600
#define MB_ERR_INVALID_SYSTEM_NAME                1034                  16678400
#define MB_ERR_INVALID_CONNECT_OPTIONS            1035                  16725200
#define MB_ERR_INVALID_NAME_TYPE                  1036                  16772000
#define MB_ERR_INVALID_NAME_BINDING               1037                  16818800
#define MB_ERR_INVALID_ALLOMORPHS_COUNT           1038                  16865600
#define MB_ERR_INVALID_ALLOMORPHS_ARRAY           1039                  16912400
#define MB_ERR_INVALID_CREATE_HANDLERS_COUNT      1040                  16959200
#define MB_ERR_INVALID_CREATE_HANDLERS_ARRAY      1041                  17006000
#define MB_ERR_INVALID_LOCAL_ID                   1042                  17052800
#define MB_ERR_INVALID_DEST                       1043                  17099600
                                                                        17150000
/*********************************************************************/ 17200000
/* The following return codes are returned from CMIP Services only   */ 17250000
/* via API_SVC_ERROR messages.                                       */ 17300000
/*********************************************************************/ 17350000
                                                                        17400000
#define PROGRAM_CHECK                                8                  17433300
                                                                        17466600
#define AUTHENTICATION_FAILED                      250                  17499900
#define AUTHENTICATION_INFO_MISSING                251                  17533200
#define AUTHENTICATION_MECH_UNKNOWN                252                  17566500
                                                                        17600000
#define BER_BAD_TYPE                               300                  17650000
#define BER_BAD_MODULE                             301                  17700000
#define BER_NULL_TYPE                              302                  17750000
#define BER_NULL_MODULE                            303                  17800000
#define BER_NULL_STRING                            304                  17850000
#define BER_NULL_STRUCT                            305                  17900000
#define BER_BAD_METATABLE                          306                  17950000
#define BER_UNKNOWN_TYPE                           307                  18000000
#define BER_UNKNOWN_MEMBER                         308                  18050000
#define BER_UNKNOWN_ALTERNATIVE                    309                  18100000
#define BER_NO_END_PARENTHESIS                     310                  18150000
#define BER_NO_START_PARENTHESIS                   311                  18200000
#define BER_NO_MORE_STRING                         312                  18250000
#define BER_PARSE_ERROR                            313                  18300000
#define BER_IMPLICIT_CHOICE                        314                  18350000
#define BER_CANNOT_RESOLVE                         315                  18400000
#define BER_NEED_LABEL                             316                  18450000
#define BER_MISSING_MEMBER                         317                  18500000
#define BER_NO_PARENT                              319                  18550000
#define BER_BAD_DN_PARSE                           320                  18600000
#define BER_BAD_RESOLUTION_NODE                    321                  18650000
#define BER_MISSING_RESOLUTION_NODE                322                  18700000
#define BER_LABEL_MISMATCH                         323                  18750000
#define BER_NOT_BOOLEAN                            325                  18800000
#define BER_NOT_INTEGER                            326                  18850000
#define BER_NOT_REAL                               327                  18900000
#define BER_NOT_NULL                               328                  18950000
#define BER_NOT_BIT_STRING                         329                  19000000
#define BER_NOT_HEX_STRING                         330                  19050000
#define BER_BAD_HEX_STRING                         331                  19100000
#define BER_NOT_OI                                 332                  19150000
#define BER_BAD_TIME                               333                  19200000
#define BER_BAD_ENUMERATED                         334                  19250000
#define BER_BAD_PRINTABLE_STRING                   335                  19300000
#define BER_BAD_NUMERIC_STRING                     336                  19350000
#define BER_BAD_VISIBLE_STRING                     337                  19400000
#define BER_BAD_GRAPHIC_STRING                     338                  19450000
#define BER_BAD_GENERAL_STRING                     339                  19500000
#define BER_BAD_IA5_STRING                         340                  19550000
#define BER_DUPLICATE_MEMBER                       341                  19600000
#define BER_CANT_DO_REAL                           342                  19650000
#define BER_NOT_STRAIGHT_BER                       343                  19700000
#define BER_UNRESOLVED_EXTERNAL                    344                  19750000
#define BER_STILL_MORE_STRING                      345                  19800000
#define BER_DUP_MODULE                             347                  19850000
#define BER_UNRESOLVED_MODULE_REF                  348                  19900000
#define BER_UNRESOLVED_REF                         349                  19950000
#define BER_FAILED_SUBTYPE                         354                  20000000
#define BER_BAD_CONSTRUCTED                        356                  20050000
#define BER_BAD_PRIMITIVE                          357                  20100000
#define BER_BAD_INITIAL_OCTET                      358                  20150000
#define BER_BAD_BOOLEAN                            359                  20200000
#define BER_BAD_OI                                 360                  20250000
#define BER_BAD_NULL                               361                  20300000
#define BER_BAD_PARAMETERS                         363                  20400000
#define BER_EMPTY_BIT_STRING                       364                  20450000
                                                                        20800000
#define RDN_SEP_AT_BEGIN_OF_DN                     375                  20847600
#define AVA_SEP_AT_BEGIN_OF_DN                     376                  20895200
#define SPACE_AT_BEGIN_OF_DN                       377                  20942800
#define INVALID_CHAR_AT_BEGIN_OF_DN                378                  20990400
#define RDN_SEP_AT_BEGIN_OF_RDN                    379                  21038000
#define AVA_SEP_AT_BEGIN_OF_RDN                    380                  21085600
#define SPACE_AT_BEGIN_OF_RDN                      381                  21133200
#define INVALID_CHAR_AT_BEGIN_OF_RDN               382                  21180800
#define INVALID_ALPHA_IN_INTEGER_VALUE             383                  21228400
#define INVALID_SPACE_IN_INTEGER_VALUE             384                  21276000
#define INVALID_CHAR_IN_INTEGER_VALUE              385                  21323600
#define INVALID_SPACE_IN_OI_VALUE                  386                  21371200
#define INVALID_CHAR_IN_OI_VALUE                   387                  21418800
#define INVALID_SPACE_IN_SYMBOLIC_VALUE            388                  21466400
#define INVALID_CHAR_IN_SYMBOLIC_VALUE             389                  21514000
#define INVALID_CHAR_IN_ATTR_VALUE                 390                  21561600
#define INVALID_SPACE_IN_ATTR_VALUE                391                  21609200
#define PREMATURE_END_OF_DN                        392                  21656800
#define INVALID_SPACE_AT_END_OF_RDN                393                  21704400
#define BOTH_QUOTE_TYPES_USED                      394                  21752000
                                                                        21800000
#define REPL_ERR_INVLD_VERBCODE                    400                  21850000
#define REPL_ERR_MISSING_ASN1_TREE                 401                  21900000
#define REPL_ERR_OBJCLASS_MISSING                  402                  21950000
#define REPL_ERR_OBJCLASS_INVALID                  403                  22000000
#define REPL_ERR_OBJINST_MISSING                   404                  22050000
#define REPL_ERR_OBJINST_INVALID                   405                  22100000
#define REPL_ERR_DUPLICATE_OBJINST                 406                  22150000
#define REPL_ERR_NO_SUCH_OBJINST                   407                  22200000
#define REPL_ERR_MOI_OC_MISMATCH                   408                  22250000
#define REPL_ERR_NAME_CREATE_FAILED                409                  22300000
#define REPL_ERR_GDMO_FILE_BAD_VERS                410                  22350000
#define REPL_ERR_NOTHING_TO_DELETE                 411                  22400000
#define REPL_WRN_OBJCLASS                          412                  22450000
#define REPL_ERR_ALREADY_AN_STM                    413                  22500000
#define REPL_ERR_INVLD_STM_CHILD                   414                  22550000
#define REPL_ERR_SCOPES_TO_NOTHING                 415                  22600000
#define REPL_ERR_INVALID_SCOPE                     416                  22650000
#define REPL_ERR_COMMITDN_NOTIN_LIST               417                  22700000
#define REPL_ERR_NO_ONE_2_SEND_CRT_2               419                  22750000
#define REPL_ERR_NOONE_2_SEND_EVNT_2               420                  22800000
#define REPL_ERR_ALREADY_EVNT_HNDLR                421                  22850000
#define REPL_ERR_NAMEBIND_INVALID                  422                  22900000
#define REPL_ERR_CRT_FAIL_NB                       424                  22950000
#define REPL_ERR_CRT_FAIL_NO_NB                    425                  23000000
#define REPL_ERR_DLT_FAIL_CONTOBJS                 426                  23050000
#define REPL_ERR_DLT_FAIL_TO_DCO                   427                  23100000
#define REPL_ERR_DLT_FAIL_NB                       428                  23150000
#define REPL_ERR_NO_LOCALDN                        429                  23200000
#define REPL_ERR_DUPLICATE_LDNH                    430                  23250000
#define REPL_REG_CREATED                           431                  23300000
#define REPL_CRT_COMPLETED                         432                  23350000
#define REPL_REG_COMPLETED                         433                  23400000
#define REPL_REG_SUSPENDED                         434                  23450000
#define REPL_ERR_ATTRTYPE_MISMATCH                 435                  23500000
#define REPL_ERR_CANNOT_CHANGE_NB                  436                  23550000
#define REPL_ERR_BULK_HAD_PROBLEMS                 438                  23600000
#define REPL_ERR_NB_DISALLOWS_NEWOC                439                  23650000
#define REPL_ERR_SYNC_NOT_SUPPORTED                440                  23700000
                                                                        23800000
#define CRC_ERR_INVLD_VERBCODE                     500                  23836300
#define CRC_ERR_INVLD_SESSHAND                     501                  23872600
#define CRC_ERR_INVLD_INVOKEID                     502                  23908900
#define CRC_ERR_DPLCT_INVOKEID                     503                  23945200
#define CRC_ERR_INVLD_LINKEDID                     504                  23981500
#define CRC_ERR_UNABLE_TO_BUILD_MSG                505                  24017800
#define CRC_ERR_INVLD_ROERRJ_RCVD                  506                  24054100
#define CRC_ERR_INVLD_CANCELGET                    507                  24090400
#define CRC_ERR_INVLD_INVOKEID_ON_CANCELGET        508                  24126700
#define CRC_DELETE_RORJ_RECEIVED                   509                  24163000
                                                                        24200000
#define SSERR_STATE_INVALID                        550                  24250000
#define SSERR_SPDU_INVALID                         551                  24300000
#define SSERR_MISSING_PI                           552                  24350000
#define SSERR_MISSING_UI                           553                  24400000
#define SSERR_VERB_INVALID                         554                  24450000
#define SSERR_INVALID_SUR                          556                  24500000
#define SSERR_USERDATA_SIZE                        557                  24550000
#define SSERR_TDISC_UNSPECIFIED                    558                  24600000
#define SSERR_TDISC_CONGESTED                      559                  24650000
#define SSERR_TDISC_UNATTACHED                     560                  24700000
#define SSERR_TDISC_ADDRESS                        561                  24750000
#define SSERR_VERSION                              562                  24800000
#define SSERR_PARTNER_ABORT                        563                  24850000
#define SSERR_ENCLOSURE_ITEM                       564                  24900000
                                                                        25000000
#define MD_ERR_BAD_MDSMU                           568                  25050000
#define MD_ERR_SNACR_BEING_SENT                    573                  25100000
#define MD_ERR_SNACR_RECEIVED                      574                  25150000
                                                                        25200000
#define SSERR_GIVE_TOKEN_NO_DATA                   578                  25250000
#define SSERR_DUPLICATE                            581                  25300000
                                                                        25750000
#define ACF_EVENT_LOOP                             802                  25789300
#define ACF_INVALID_ASSOC_ID                       803                  25828600
#define ACF_INVALID_PARAMETERS                     804                  25867900
#define ACF_INVALID_USER_ID                        806                  25907200
#define ACF_RSP_BUILD_SEND_FAILED                  807                  25946500
#define ACF_ERR_KILL_LOC_ASSOC                     808                  25985800
#define ACF_UNSUPPORTED_VERB                       809                  26025100
#define ACF_INVALID_DEST_FORMAT                    810                  26064400
#define ACF_BAD_AE_TITLE_FORMAT                    812                  26103700
#define ACF_CANNOT_FIND_INST                       814                  26143000
#define ACF_NO_DESTINATION                         815                  26182300
#define ACF_NO_ASSOC_TEMP                          817                  26221600
#define ACF_MSG_REJECTED                           818                  26260900
#define ACF_EMPTY_DEF_LIST_RESULT                  819                  26300200
#define ACF_QUEUED_MESSAGE                         823                  26339500
#define ACF_ASSOC_ID_WRAP                          824                  26378800
#define ACF_AUTO_ASSOC_TEARDOWN_TERM               825                  26418100
#define ACF_TOO_MANY_LOCAL_ASSOCS                  826                  26457400
#define ACF_DUPLICATE_AE                           827                  26496700
#define ACF_REMOTE_AE                              828                  26536000
#define ACF_INVALID_STATE_TO_RELEASE               829                  26575300
#define ACF_INVALID_AE                             830                  26614600
#define ACF_BAD_P_MODE                             831                  26653900
#define ACF_BAD_P_PROTOCOL_VERSION                 832                  26693200
#define ACF_BAD_CMIP_VERSION                       833                  26732500
#define ACF_BAD_APPL_CONTEXT                       834                  26771800
#define ACF_NO_APPL_CONTEXT                        835                  26811100
#define ACF_NO_APPL_INFO                           836                  26850400
#define ACF_BAD_DEF_LIST                           837                  26889700
#define ACF_WRONG_AE_TITLE                         838                  26929000
#define ACF_ALREADY_CONFIRMED                      839                  26968300
#define ACF_NO_AE_QUALIFIER                        840                  27007600
                                                                        27050000
#define MB_ERR_PROCFAIL_NOT_OPTIONAL               900                  27100000
#define MB_ERR_COMPXLIM_NOT_OPTIONAL               901                  27150000
#define MB_ERR_INVALID_TYPENAME                    903                  27200000
#define MB_ERR_NOT_CONNECTED                       904                  27250000
#define MB_ERR_WRONG_LENGTH                        906                  27300000
#define MB_ERR_INVALID_API_TAG                     907                  27350000
#define MB_ERR_MISSING_API_TAG                     909                  27400000
#define MB_ERR_UNSUPPORTED_MSG_TYPE                913                  27450000
#define MB_ERR_DELETE_PROTOCOL_ERROR               914                  27500000
#define MB_ERR_DUPLICATE_TAGS                      915                  27550000
#define MB_ERR_CONNECTION_CONFLICT                 916                  27600000
#define MB_ERR_HEADER_NOT_PRESENT                  917                  27650000
#define MB_ERR_INVALID_STATE                       919                  27700000
#define MB_ERR_CMIP_ERR_RESP_ILLEGAL               921                  27750000
#define MB_ERR_CMIP_ERR_RESP_STKCHK                922                  27800000
#define MB_TRY_XMIT_RESP                           923                  27850000
#define MB_ERR_LOST_CONNECTION                     925                  27900000
#define MB_ERR_INVALID_NUMLOCALIDS                 926                  27950000
#define MB_ERR_MISSING_LOCAL_ID                    928                  28000000
#define MB_ERR_LOCAL_ID_ALREADY_REGISTERED         929                  28050000
#define MB_ERR_INVALID_MSG_TYPE                    930                  28150000
#define MB_ERR_SOURCE_NOT_IN_SUBTREE               931                  28200000
#define MB_ERR_CMIP_ERR_NOT_STM                    933                  28250000
#define MB_ERR_NOT_SUBTREE_MGR                     934                  28300000
#define MB_ERR_DIDNT_USE_AMPER_IID                 935                  28350000
#define MB_ERR_CMIP_ERR_NOTASROIV                  936                  28400000
#define MB_ERR_INVALID_MSG_FORMAT                  937                  28450000
#define MB_ERR_EMPTY_ROIV_INVALID                  938                  28500000
#define MB_ERR_INVALID_RESP                        939                  28550000
#define MB_ERR_CANCELGET_RESP_INVALID              941                  28600000
                                                                        28650000
#define HDR_SYNTAX_ERROR                           952                  28700000
#define INVALID_HDR_DEST_TYPE                      953                  28750000
#define INVALID_HDR_SRC_TYPE                       954                  28800000
#define UNRECOGNIZED_HDR_LABEL                     955                  28850000
#define KEY_IS_NULL                                956                  28900000
#define KEY_NOT_FOUND                              957                  28950000
#define MIB_VAR_NOT_LOADED                         958                  29000000
                                                                        29100000
#define LABV_END_QUOTE_NOT_FOUND                   961                  29150000
#define LABV_NULL_VALUE                            962                  29200000
#define LABV_INVALID_CHAR_IN_VALUE                 963                  29250000
#define LABV_INVALID_GROUP_DELIMITER               964                  29300000
#define LABV_EMPTY_STRING                          965                  29350000
                                                                        29400000
#endif                              /* ifndef ACYAPHDH_INCLUDED      */ 29450000

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014