filefetcher.pan

来自「nokia symbian File_Fetching」· PAN 代码 · 共 32 行

PAN
32
字号
/*
 * ============================================================================
 *  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 + =
减小字号Ctrl + -
显示快捷键?