Hi Friends,
I am trying to rejects the incoming calls,Incoming calls Reject But I am getting a short ringing tone before rejection.
Has anybody ever faced the same.Kindly tell me how can I control it.
Plz guide me regarding this.......
ok frnds,
my problem has been solved....
i just use to check callstatus after opening the call and then hangup it. After that caller doesn't hear short ringtone...
code is here:-----
User::LeaveIfError(iCall.OpenExistingCall(iLine, iCallName));//open existing call User::LeaveIfError(iCall.GetStatus(iCallStatus));// get status if (iCallStatus == RCall::EStatusRinging)//check here { iCall.HangUp(); iCall.Close();] }
Forum posts: 93
ok frnds,
my problem has been solved....
i just use to check callstatus after opening the call and then hangup it. After that caller doesn't hear short ringtone...
code is here:-----
User::LeaveIfError(iCall.OpenExistingCall(iLine, iCallName));//open existing callUser::LeaveIfError(iCall.GetStatus(iCallStatus));// get status
if (iCallStatus == RCall::EStatusRinging)//check here
{
iCall.HangUp();
iCall.Close();]
}
Thanks & Regards,
C Singh