exampleclient.pan

来自「symbian os c/c++ 手机客户端使用HTTP通信例子」· PAN 代码 · 共 33 行

PAN
33
字号
/*
 * ============================================================================
 *  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 + =
减小字号Ctrl + -
显示快捷键?