📄 cipher.pan
字号:
/* Copyright (c) 2003, Nokia. All rights reserved */
#ifndef __CIPHER_PAN__
#define __CIPHER_PAN__
/** Cipher application panic codes */
enum TCipherPanics
{
ECipherBasicUi = 1,
ECipherInvalidComponentIndex
// add further panics here
};
inline void Panic(TCipherPanics aReason)
{
_LIT(applicationName,"Cipher");
User::Panic(applicationName, aReason);
}
#endif // __CIPHER_PAN__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -