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

📄 filelist.pan

📁 Symbian中如何显示其系统文件列表的一个范例
💻 PAN
字号:
/*
* ============================================================================
*  Name     : FileList.pan
*  Part of  : FileList
*  Created  : 04/11/2006 by Forum Nokia
*  Description:
*     This file contains thread panics.
*  Version  : 2.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef __FILELIST_PAN__
#define __FILELIST_PAN__

enum TFileListPanics 
{
    EFileListIvalidIndex = 1
};

inline void Panic(TFileListPanics aReason)
{
	_LIT(applicationName,"FileList");
    User::Panic(applicationName, aReason);
}

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

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

#endif // __FILELIST_PAN__

⌨️ 快捷键说明

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