sipexengine.pan

来自「an example for sip for symbian」· PAN 代码 · 共 35 行

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

#ifndef _SIPEXENGINE_PAN
#define _SIPEXENGINE_PAN

_LIT( KPanicCntx, "SIPExGameEngine" );

enum TSIPExEnginePanic
	{
	// The game view notifier has not been set to the game engine.
	ENoGameViewNotifier = -6000,
	// The board value is out of range
	EBoardValueOOR = -6001
	};

inline void Panic( TSIPExEnginePanic aPanic )
    {
    User::Panic( KPanicCntx(), aPanic );
    }

#endif // _SIPEXENGINE_PAN

⌨️ 快捷键说明

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