|
|
User login
Feeds |
Looking for etelmm.h.
|
|||||
| Tue, 2003-09-09 13:50 | |
|
Hi,
I'm looking for etelmm.h file from Symbian UIQ SDK. Does anyone has or created it manually? If yes, please, share it with me: 2nike@mail.ru Thanks |
|
Forum posts: 7
You have 2 options, get yourself a license or sign in at an OS Internals course. There you receive the SDK ...... the SDK contains the needed file.
Sami Yilmaz
Forum posts: 363
Cheers,
Pawel
Forum posts: 17
Sami77, I hope that someone who has signed for this course will share with me
Pawel, already started to do this. Everything was fine untill I tried to use created header
Forum posts: 363
So it goes,
-Pawel
Forum posts: 17
If there was another way to get this info I won't even ask for missed header
Forum posts: 17
http://zerogravity.narod.ru/symbian/uiq/etelmm.html
Forum posts: 17
Forum posts: 52
Forum posts: 52
You have 2 options, get yourself a license or sign in at an OS Internals course. There you receive the SDK ...... the SDK contains the needed file.
which API can help me in getting the number using etelmm.h.I want the number as soon as my program detect the call prior to answer or any attempt with the call.
Forum posts: 18
has anyone retrieved the number on nokia 6600?
if yes, then which file has he used
etelmm.lib or gsmadv.lib and gsmbas.lib
dlls of all these three files are there in the nokia 6600
we can retrieve number using gsmadv.lib and gsmbas.lib
on nokia 7650 and 3650
but the same code does not work on nokia 6600
plz guide me, what to do
thanks in advance
gaurav
Forum posts: 67
I have used etelmm.Lib,
the Code:
TBuf<20> iDialedNumber;
RLine iLine;
RMobileCall iCall;
RMobilePhone iPhone;
RLine::TLineInfo lineInfo;
iLine.GetInfo(lineInfo);
iCall.OpenExistingCall(iLine, lineInfo.iNameOfLastCallAdded);
RMobileCall::TMobileCallInfoV1 iRemotePartyInfo;
TPckg< RMobileCall::TMobileCallInfoV1> des(iRemotePartyInfo);
iCall.GetMobileCallInfo(des);
iRemotePartyInfo = des();
iDialedNumber.Append(iRemotePartyInfo.iRemoteParty.iRemoteNumber.iTelNumber);
iDialedNumber.Append(iRemotePartyInfo.iDialledParty.iTelNumber);
good luck
Forum posts: 3
Do anyone know, how to send DTMF tones, after dialing a number, using ETelMM on Nokia 6600 and Nokia 3650
Thankx