| Alex Feinman [MVP] 2005-05-31, 4:02 am |
| Generally CALLEDID is only available on systems that support DID. E.g. if
you have a T1/E1 line, CALLEDID will carry the DNIS infrmation if available.
On the smartphone you should not expect to receive it. What are you trying
to do?
--
Alex Feinman
---
Visit http://www.opennetcf.org
"Ketan" <ketan123@sify.com> wrote in message
news:Ok7krURZFHA.1088@TK2MSFTNGP14.phx.gbl...
> Hi m facing some problem with LINECALLINFOSTATE_CALLEDID in a TAPI
> application. I have written a portion of it below but the
> LINECALLINFOSTATE_CALLEDID never gets executed.........I want to fetch
> some information at this event......Plz help me.....
>
>
> case LINE_CALLINFO: // Call Info is available
> { if(dwParam1 == LINECALLINFOSTATE_CALLERID)
> { //Caller ID became available.
> break;
> }
> if(dwParam1 == LINECALLINFOSTATE_CALLEDID)
> { //called ID became available
> break;
> }
> }
>
|