fairyland.pan
来自「一个比较完整的有关移动开发的例子 vc++6.0下编译通过」· PAN 代码 · 共 20 行
PAN
20 行
/* Copyright (c) 2008, Nokia. All rights reserved */
#ifndef __FAIRYLAND_PAN__
#define __FAIRYLAND_PAN__
/* FairyLand application panic codes */
enum TFairyLandPanics
{
EFairyLandBasicUi = 1
// add further panics here
};
inline void Panic(TFairyLandPanics aReason)
{
_LIT(applicationName,"FairyLand");
User::Panic(applicationName, aReason);
}
#endif // __FAIRYLAND_PAN__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?