Hi
I'm using this class from etelmm.h:
--------------------------------------------
class TMobileCallHscsdInfoV1 : public RMobilePhone::TMultimodeType
{
public:
IMPORT_C TMobileCallHscsdInfoV1();
public:
TMobileCallAiur iAiur;
TInt iRxTimeSlots;
TInt iTxTimeSlots;
TMobileCallTchCoding iCodings;
};
typedef TPckg<TMobileCallHscsdInfoV1> TMobileCallHscsdInfoV1Pckg;
IMPORT_C TInt GetCurrentHscsdInfo(TDes8& aHSCSDInfo) const;
--------------------------------------------------------------
I want to show the info (iAiur, iRxTimeSlots,...) on the screen, but I'm having trouble writing the code. I have this so far:
---------------------
TBuf8<100> iHSCSDInfo;
RMobileCall iInfo;
iInfo.GetCurrentHscsdInfo(iHSCSDInfo);
----------------------
Do I need to open a connection?
what should I do from here?
Thnx



