This page was last modified 17:43, 2 January 2008.
How to know fax line status
From Forum Nokia Wiki
The fax line status can be returned in a packaged CTelephony::TCallStatusV1. It represents states such as Idle, Dialling, Ringing, Answering, On-Hold etc.This is a synchronous call and cannot be cancelled.
And you cannot receive notification when the data line's status changes.
CTelephony* telephony = CTelephony::NewLC(); CTelephony::TCallStatusV1 callStatusV1; CTelephony::TCallStatusV1Pckg callStatusV1Pckg( callStatusV1 ); CTelephony::TPhoneLine line = CTelephony::EFaxLine; telephony->GetLineStatus( line, callStatusV1Pckg ); CTelephony::TCallStatus faxLineStatus = callStatusV1.iStatus; CleanupStack::PopAndDestroy( telephony );
Wiki Internal Links
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| CTelephony - NotifyChange - how not to miss events? | rob_savageminds | General Symbian C++ | 3 | 2007-11-01 11:23 |
| MMS/ Confirmation | waleed_raj | General Browsing | 1 | 2003-03-25 07:25 |
| CAknDialog中可以放CAknSlider吗? | goready@163.com | Symbian | 1 | 2006-06-27 10:55 |
| 请教高手:有些系统服务是异步的,怎样做能达到同步的效果呢? | feng7801 | Symbian | 1 | 2006-06-12 01:56 |
| 多线程和活动对象 | alex_hua | Symbian | 16 | 2008-05-30 06:21 |
