?? iapconnect.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 + -