webclient.pan

来自「symbian 利用http上传的例子.」· PAN 代码 · 共 34 行

PAN
34
字号
/*
* ==============================================================================
*  Name        : WebClient.pan
*  Part of     : WebClient
*  Interface   : 
*  Description : 
*  Version     : 
*
*  Copyright (c) 2005-2006 Nokia Corporation.
*  This material, including documentation and any related 
*  computer programs, is protected by copyright controlled by 
*  Nokia Corporation.
* ==============================================================================
*/

#ifndef WEBCLIENT_PAN
#define WEBCLIENT_PAN

enum TClientPanics 
    {
    EClientUi = 1,
    EClientView,
    EClientEngine
    // add further panics here
    };

inline void Panic(TClientPanics aReason)
    {
    _LIT(applicationName,"WebClient");
    User::Panic(applicationName, aReason);
    }

#endif // WEBCLIENT_PAN

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?