entry.pan
来自「Simple database program」· PAN 代码 · 共 27 行
PAN
27 行
/*
============================================================================
Name : Entry.pan
Author : Sazzad
Copyright : @Sazzad 2008
Description : This file contains panic codes.
============================================================================
*/
#ifndef __ENTRY_PAN__
#define __ENTRY_PAN__
/** Entry application panic codes */
enum TEntryPanics
{
EEntryUi = 1
// add further panics here
};
inline void Panic(TEntryPanics aReason)
{
_LIT(applicationName, "Entry");
User::Panic(applicationName, aReason);
}
#endif // __ENTRY_PAN__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?