To display a single line message synchronously, use the static function
User::InfoPrint()
. The following code fragment shows how:
{
...
_LIT(KTxtMsg,"A message");
...
User::InfoPrint(KTxtMsg);
...
}
User::InfoPrint()
uses an
RNotifier
object in its implementation, but you do
not need to use the object to display the message.