preinstall4.pan
来自「在Garbide c++中建立的Symbian程序。实现了安装后自动调用JAVA」· PAN 代码 · 共 27 行
PAN
27 行
/*
============================================================================
Name : PreInstall4.pan
Author :
Copyright : 35
Description : This file contains panic codes.
============================================================================
*/
#ifndef __PREINSTALL4_PAN__
#define __PREINSTALL4_PAN__
/** PreInstall4 application panic codes */
enum TPreInstall4Panics
{
EPreInstall4Ui = 1
// add further panics here
};
inline void Panic(TPreInstall4Panics aReason)
{
_LIT(applicationName, "PreInstall4");
User::Panic(applicationName, aReason);
}
#endif // __PREINSTALL4_PAN__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?