labletestapp.pan
来自「多个标签的示例 symbian c++ for s60 v3」· PAN 代码 · 共 27 行
PAN
27 行
/*
============================================================================
Name : LableTestApp.pan
Author : lemonhat
Copyright : Your copyright notice
Description : This file contains panic codes.
============================================================================
*/
#ifndef __LABLETESTAPP_PAN__
#define __LABLETESTAPP_PAN__
/** LableTestApp application panic codes */
enum TLableTestAppPanics
{
ELableTestAppUi = 1
// add further panics here
};
inline void Panic(TLableTestAppPanics aReason)
{
_LIT(applicationName, "LableTestApp");
User::Panic(applicationName, aReason);
}
#endif // __LABLETESTAPP_PAN__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?