FTAM/9000 Programmer's Guide
Chapter 10 415
Example Programs
Common Code Example
/*
** Initialize the parameters with all valid values.
*/
*return_event_name = 1;
*threshold = 2;
*input_dcb = NULL;
*inout_dcb = NULL;
}
/*
**
** egr_parm_in
**
** DESCRIPTION:
** This routine assigns valid values to the ft_egroup parameters.
**
**
** PARAMETERS:
** Outputs:
** return_event_name : gets signalled when the event completes
** default: SYNCHRONOUS
** input_dcb : input_dcb is NULL
** inout_dcb : contains return_code field
**
*/
void
egr_parm_in(return_event_name, input_dcb, inout_dcb)
Local_event_name *return_event_name;
char **input_dcb;
struct Ft_egroup_out_dcb **inout_dcb;
{
/*
** Initialize the parameters with valid values.
*/
*return_event_name = SYNCHRONOUS;
*input_dcb = NULL;
*inout_dcb = NULL;
}