Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

The KDCADMI function call

A C program which issues KDCADMI calls must always contain an #include statement referring to the header file or include element kcadminc.h. In kcadminc.h, the function KDCADMI is declared as follows:

void KDCADMI(struct kc_adm_parameter *  ,  /*    parameter_area       */
             void                    *  ,  /*    identification_area  */
             void                    *  ,  /*    selection_area       */
             void                    * );  /*    data_area            */

The KDCADMI function is called as follows:

#include <kcadminc.h>
KDCADMI(&parameter_area,
        &identification_area,
        &selection_area,
        &data_area );

where:

&parameter_area

is the address of the parameter area named parameter_area.

&identification_area

is the address of the identification area named identification_area.

&selection_area

is the address of the selection area named selection_area.

&data_area

is the address of the data area named data_area.

If one of the four areas is not needed for a particular call, then the null pointer must be passed as the address of that area.