biaofeng.pan
来自「一个可以加载图片作为下拉菜单的symbian手机示例」· PAN 代码 · 共 27 行
PAN
27 行
/*
============================================================================
Name : Biaofeng.pan
Author :
Copyright : Your copyright notice
Description : This file contains panic codes.
============================================================================
*/
#ifndef __BIAOFENG_PAN__
#define __BIAOFENG_PAN__
/** Biaofeng application panic codes */
enum TBiaofengPanics
{
EBiaofengUi = 1
// add further panics here
};
inline void Panic(TBiaofengPanics aReason)
{
_LIT(applicationName, "Biaofeng");
User::Panic(applicationName, aReason);
}
#endif // __BIAOFENG_PAN__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?