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

📄 filefetcher.pan

📁 nokia symbian File_Fetching
💻 PAN
字号:
/*
 * ============================================================================
 *  Name     : FileFetcher.pan
 *  Part of  : File fetching Example
 *  Created  : 12/9/2003 by Forum Nokia
 *  Implementation notes:
 *	Panic codes and helpers for the application.
 *     
 *  Version  : 1.0
 *  Copyright: Nokia Corporation
 * ============================================================================
 */

#ifndef __FILEFETCHER_PAN__
#define __FILEFETCHER_PAN__

/** FileFetcher application panic codes */
enum TFileFetcherPanics 
    {
    EFileFetcherUi = 1,
    EFileFetcherView
    // add further panics here
    };

inline void Panic(TFileFetcherPanics aReason)
    {
	_LIT(applicationName,"File Fetcher Example");
    User::Panic(applicationName, aReason);
    }

#endif // __FILEFETCHER_PAN__

⌨️ 快捷键说明

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