📄 teststatus.pan
字号:
/*
============================================================================
Name : TestStatus.pan
Author : Lion
Copyright : Your copyright notice
Description : This file contains panic codes.
============================================================================
*/
#ifndef __TESTSTATUS_PAN__
#define __TESTSTATUS_PAN__
/** TestStatus application panic codes */
enum TTestStatusPanics
{
ETestStatusUi = 1
// add further panics here
};
inline void Panic(TTestStatusPanics aReason)
{
_LIT(applicationName,"TestStatus");
User::Panic(applicationName, aReason);
}
#endif // __TESTSTATUS_PAN__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -