cameraapp.pan

来自「Symbian智能手机操作系统源代码值的参考_摄像头」· PAN 代码 · 共 34 行

PAN
34
字号
/*
* ============================================================================
*  Name     : cameraapp.pan
*  Part of  : CameraApp
*  Implementation notes:
*     This file contains thread panics.
*  Created  : 05/06/2006 by Forum Nokia
*  Version  : 2.0
*  Copyright: Nokia Corporation, 2006
* ============================================================================
*/

#ifndef __CAMERAAPP_PAN__
#define __CAMERAAPP_PAN__

#include <e32std.h>

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

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

#endif // __CAMERAAPP_PAN__

⌨️ 快捷键说明

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