Categories: S60 | Symbian C++ | UI
This page was last modified 13:25, 24 June 2008.
Logs Client API
From Forum Nokia Wiki
| Note! |
|---|
|
The Logs Clent API can be used to launch Logs view, missed calls view and dialled calls view.
Use cases
In an application, where it is needed to know missed calls without closing the application.
Example code
Header files:
#include <CLogsClient.h>
Link against:
LIBRARY logsclient.lib
To launch Logs view,Dialled calls and Missed view:
// Instantiate CLogsClient class CLogsClient* iLogsClient= CLogsClient::NewL(); // Launches Main Logs view iLogsClient->StartLogsL(MLogsAppStarter::EAppListView); // Launches Dialled calls view iLogsClient->StartLogsL(MLogsAppStarter::EDialledCallsView); // Launches Missed calls view iLogsClient->StartLogsL(MLogsAppStarter::EMissedCallsView);
Example project
Example application to launch Logs view[[Category:Code Examples]
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Unique ID from java on Nokia E61 | tubeman | Mobile Java General | 2 | 2006-03-13 14:03 |
| 题目:基本的c++问题,link错误2019,请教各位高手,急 | herosu | Symbian | 10 | 2005-07-05 06:41 |
| How to play multiple .wav files? | BenNg | General Symbian C++ | 19 | 2008-07-20 17:26 |
| Capture Console Logs on Device | amitaggarwal | Mobile Java General | 8 | 2008-07-07 05:12 |
| Problem with Right In DRM Separete Delivery | aliagamanuel | Digital Rights Management & Content Downloading | 25 | 2008-06-06 05:54 |
