hellotest.pan
来自「symbian os下的helloworld」· PAN 代码 · 共 27 行
PAN
27 行
/*
============================================================================
Name : hellotest.pan
Author :
Copyright : Your copyright notice
Description : This file contains panic codes.
============================================================================
*/
#ifndef __HELLOTEST_PAN__
#define __HELLOTEST_PAN__
/** hellotest application panic codes */
enum ThellotestPanics
{
EhellotestUi = 1
// add further panics here
};
inline void Panic(ThellotestPanics aReason)
{
_LIT(applicationName,"hellotest");
User::Panic(applicationName, aReason);
}
#endif // __HELLOTEST_PAN__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?