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