Looking for etelmm.h.

Login to reply to this topic.
Tue, 2003-09-09 13:50
Joined: 2003-09-09
Forum posts: 17
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

Wed, 2003-09-10 09:21
Joined: 2003-06-27
Forum posts: 7
Looking for etelmm.h.
Well,

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

Wed, 2003-09-10 09:45
Joined: 2003-05-27
Forum posts: 363
Looking for etelmm.h.
There is a third option:  use the method and class signatures from the SDK documentation and the .LIB file to recreate the header. Not a trivial excercise, but entirely doable. This information was not really meant to be hidden, if the documentation is there and the .LIB files too.

Cheers,
Pawel
Wed, 2003-09-10 15:13
Joined: 2003-09-09
Forum posts: 17
Looking for etelmm.h.
Thank you for the answers.

Sami77, I hope that someone who has signed for this course will share with me Smiley.

Pawel, already started to do this. Everything was fine untill I tried to use created header Smiley. Smth was wrong with inheritance from RPhone. Will continue trying Smiley.
Thu, 2003-09-11 14:52
Joined: 2003-05-27
Forum posts: 363
Looking for etelmm.h.
I should add that there is a very good reason for the file not being included in the SDK for everyone to see - Symbian/licensees want to make sure that the API will be used in the proper manner and hence attend the course. Unfortunately, they included the documentation and LIB files in the SDK...

So it goes,
-Pawel
Fri, 2003-09-12 08:11
Joined: 2003-09-09
Forum posts: 17
Looking for etelmm.h.
Pawel, I fully inderstand why this file is not included, but I quess that the majority of developers want to use readonly methods for retrieving such info as current network, battery or signal level. As for me, I'm looking for the info shown in "View" -> "System information" in p800.
If there was another way to get this info I won't even ask for missed header Smiley.  Actually, I'm not sure if this header helps me, but this is the only way for now and I'll follow it to find out Smiley.
Tue, 2003-09-16 20:22
Joined: 2003-09-09
Forum posts: 17
Looking for etelmm.h.
Fri, 2003-09-19 18:22
Joined: 2003-09-09
Forum posts: 17
Looking for etelmm.h.
Hmmm... This etelmm.h seems to be a huge file originally. Messaging units that didn't use it in Series60 now use it also. Had to spent some time and add another classes. Link is the same: http://zerogravity.narod.ru
Fri, 2004-06-11 09:13
Joined: 2004-05-20
Forum posts: 52
Looking for etelmm.h.
hi! i'm looking for etelmm.lib for wins. the only ones in the zerogravity site are for armi, arm4, thumb and winscw. tnx.
Tue, 2004-06-15 12:30
Joined: 2004-05-20
Forum posts: 52
Looking for etelmm.h.
Quote from: Sami77
Well,

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.
just curious. how does one become a licensee? it's ultimately impossible to sign up to a course where i live.. heck, there aren't any books on mobile programming in local bookstores!
Tue, 2004-06-15 15:37
Anonymous (not verified)
Forum posts: 2043
Looking for etelmm.h.
Sponsor yourself or get your employer to send you to one of the cities where the courses are held. You can attend the training during the day and party at night; overall a fun time to be had!
Thu, 2005-01-06 06:31
Anonymous (not verified)
Forum posts: 2043
Looking for etelmm.h.
hi
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.
Fri, 2005-03-04 06:52
Joined: 2005-01-06
Forum posts: 18
Looking for etelmm.h.
hi

has anyone retrieved the number on nokia 6600?HuhHuh?
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
Sat, 2005-03-05 11:08
Joined: 2004-11-20
Forum posts: 67
Looking for etelmm.h.
Yeah, I retrived the number on 6600,
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
Fri, 2005-05-06 07:27
Joined: 2005-05-03
Forum posts: 3
Sending DTMF using etelmm on Nokia 6600
Hi,

Do anyone know, how to send DTMF tones, after dialing a number, using ETelMM on Nokia 6600 and Nokia 3650

Thankx
  • Login to reply to this topic.