Provides a code snippet to show you how to use a notifier to display a single line message synchronously.
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.