Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]


How to create an RTimer

The following example code demonstrates how to set up an RTimer.

RTimer timer; 
TRequestStatus timerStatus; // Request status associated with timer
timer.CreateLocal();        // Create for this thread
...                         // Now add code to use the timer

[Top]


Note