📄 exampleclient.pan
字号:
/*
* ============================================================================
* Name : ExampleClient.pan
* Part of : HTTP Example
* Created : 11/14/2003 by Forum Nokia
* Implementation notes:
*
*
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __EXAMPLECLIENT_PAN__
#define __EXAMPLECLIENT_PAN__
/** ExampleClient application panic codes */
enum TClientPanics
{
EClientUi = 1,
EClientView,
EClientEngine
// add further panics here
};
inline void Panic(TClientPanics aReason)
{
_LIT(applicationName,"HTTP Client Example");
User::Panic(applicationName, aReason);
}
#endif // __EXAMPLECLIENT_PAN__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -