?? exampleclient.pan
字號(hào):
/*
* ============================================================================
* 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__
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -