S60UIExample.pan
上传用户:laixiong
上传日期:2007-03-11
资源大小:2994k
文件大小:0k
源码类别:

Symbian

开发平台:

C/C++

  1. // Copyright (c) 2006 Nokia Corporation.
  2. #ifndef __S60UIEXAMPLE_PAN__
  3. #define __S60UIEXAMPLE_PAN__
  4. // S60UIExample application panic codes 
  5. enum TS60UIExamplePanics 
  6.     {
  7.     ES60UIExampleBasicUi = 1
  8.     // add further panics here
  9.     };
  10. inline void Panic( TS60UIExamplePanics aReason )
  11.     {
  12.     _LIT( applicationName,"S60UIExample" );
  13.     User::Panic( applicationName, aReason );
  14.     }
  15. #endif // __S60UIEXAMPLE_PAN__
  16. // End of File