mmsexamplepanics.pan
来自「Symbian c++ 的彩信发送接收实例」· PAN 代码 · 共 31 行
PAN
31 行
/*
* ============================================================================
* Name : MMSExamplePanics.pan
* Part of : MMSExample
* Created : 06.01.2006 by Forum Nokia
* Version : 2.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __MMSEXAMPLE_PAN__
#define __MMSEXAMPLE_PAN__
_LIT(applicationName,"MMSExample");
/** Application panic codes */
enum TMmsPanics
{
EMmsEngineInternal = 1,
EMmsEngineNotInitialized
// add further panics here
};
inline void Panic(TMmsPanics aReason)
{
User::Panic(applicationName, aReason);
}
#endif // __MMSEXAMPLE_PAN__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?