Nokia N97 SDK
Example Applications Guide

HsWidget.pan

00001 /*
00002  ============================================================================
00003  Name           : HsWidget.pan
00004  Author   : 
00005  Copyright   : Your copyright notice
00006  Description : This file contains panic codes.
00007  ============================================================================
00008  */
00009 
00010 #ifndef __HSWIDGET_PAN__
00011 #define __HSWIDGET_PAN__
00012 
00013 /** HsWidget application panic codes */
00014 enum THsWidgetPanics
00015         {
00016         EHsWidgetUi = 1
00017         // add further panics here
00018         };
00019 
00020 inline void Panic(THsWidgetPanics aReason)
00021         {
00022         _LIT(applicationName, "HsWidget");
00023         User::Panic(applicationName, aReason);
00024         }
00025 
00026 #endif // __HSWIDGET_PAN__

© Nokia 2009

Back to top