⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iapconnect.pan

📁 这是一个手机编程s60 基于c++的关于手机连接internet的数据库协议
💻 PAN
字号:
/*
* ============================================================================
*  Name     : IAPConnect.pan
*  Part of  : Internet Access Points Example v2.0
*  Description:
*     This file contains thread panics.
*  Created  : 01.09.2006 by Forum Nokia
*  Version  : 2.0
*  Copyright: Forum Nokia
* ============================================================================
*/

#ifndef __IAPCONNECT_PAN__
#define __IAPCONNECT_PAN__

#include <e32std.h>

inline void Panic(TInt aPanicCode)
	{
	_LIT(KApplicationName, "IAPConnect");
	User::Panic(KApplicationName, aPanicCode);
	}

inline void PanicIfError(TInt aPanicCode)
	{
	if (aPanicCode != KErrNone)
		{
		Panic(aPanicCode);
		}
	}

#endif // __IAPCONNECT_PAN__

⌨️ 快捷键说明

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