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