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

📄 cipher.pan

📁 Symbian 手机编程
💻 PAN
字号:
/* Copyright (c) 2003, Nokia. All rights reserved */

#ifndef __CIPHER_PAN__
#define __CIPHER_PAN__

/** Cipher application panic codes */
enum TCipherPanics 
    {
    ECipherBasicUi = 1,
	ECipherInvalidComponentIndex
    // add further panics here
    };

inline void Panic(TCipherPanics aReason)
    {
    _LIT(applicationName,"Cipher");
    User::Panic(applicationName, aReason);
    }

#endif // __CIPHER_PAN__

⌨️ 快捷键说明

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