FTAM/9000 Programmer's Guide

Chapter 10 425
Example Programs
Common Code Example
/*
**
** nwc_parm_in
**
** DESCRIPTION:
** This routine assigns values to the ft_nwcleared parameters.
**
**
** PARAMETERS:
** OUTPUT:
** return_event_name : gets signalled when the event completes
** default: SYNCHRONOUS
** inout_dcb : contains return_code field
**
**
*/
void
nwc_parm_in(return_event_name, inout_dcb)
Local_event_name *return_event_name;
struct Ft_nwcleared_out_dcb **inout_dcb;
{
/*
** Initialize the parameters with valid values.
*/
*return_event_name = SYNCHRONOUS;
*inout_dcb = NULL;
}