(Page 10 of 32 in this chapter) Version
typedef union _NMS_GR303_CHANNEL_LOCATION_T
{
struct {
DWORD boardNb;
DWORD trunkNb;
DWORD timeslotNb;
} CG;
}NMS_GR303_CHANNEL_LOCATION_T
void ResetChannelStatistics( void )
{
NMS_GR303_RESULT_T NmsResult;
DWORD InterfaceId;
NMS_GR303_CHANNEL_LOCATION_T ChannelLocation;
printf("NMS_GR303ResetChannelStatistics:\n");
/* Get parameters */
promptdw_nodft("Enter interfaceId", &InterfaceId);
printf("Enter channel location:\n");
GetChannelLocationNMS( &ChannelLocation );
NmsResult = NMS_GR303ResetChannelStatistics (InterfaceId,
ChannelLocation);
printf ("NMS_GR303ResetChannelStatistics:
Result=%s\n",PRINT_RESULT(NmsResult));
}
(Page 10 of 32 in this chapter) Version