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

📄 internetemailapp.cpp

📁 手机开发
💻 CPP
字号:
/*
* ============================================================================
*  Name     : CInternetEmailApp from InternetEmailApp.cpp
*  Part of  : InternetEmail
*  Created  : 25.10.2005 by Forum Nokia
*  Implementation notes:
*
*     Initial content was generated by S60 AppWizard.
*  Version  : 1.1
*  Copyright: Nokia Corporation 2004
* ============================================================================
*/

// INCLUDE FILES
#ifdef __SERIES60_30__
#include <eikstart.h>
#endif
#include "InternetEmailApp.h"
#include "InternetEmailDocument.h"

// ================= MEMBER FUNCTIONS =======================

// ---------------------------------------------------------
// CInternetEmailApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CInternetEmailApp::AppDllUid() const
    {
    return KUidInternetEmail;
    }

// ---------------------------------------------------------
// CDictionaryStore* CInternetEmailApp::OpenIniFileLC(RFs& aFs) const
// overrides CAknApplication::OpenIniFileLC to enable INI file support
// ---------------------------------------------------------
//
CDictionaryStore* CInternetEmailApp::OpenIniFileLC(RFs& aFs) const
{
    return CEikApplication::OpenIniFileLC(aFs);
}
   
// ---------------------------------------------------------
// CInternetEmailApp::CreateDocumentL()
// Creates CInternetEmailDocument object
// ---------------------------------------------------------
//
CApaDocument* CInternetEmailApp::CreateDocumentL()
    {
    return CInternetEmailDocument::NewL( *this );
    }


// ================= OTHER EXPORTED FUNCTIONS ==============
//
// ---------------------------------------------------------
// NewApplication() 
// Constructs CInternetEmailApp
// Returns: created application object
// ---------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
    {
    return new CInternetEmailApp;
    }

#ifdef __SERIES60_30__
    
// ---------------------------------------------------------
// E32Main() 
// Entry point function for EPOC Application
// Returns: EikStart::RunApplication: NewApplication
// ---------------------------------------------------------
//
GLDEF_C TInt E32Main()
	{
	return EikStart::RunApplication( NewApplication );
	}

#else

// ---------------------------------------------------------
// E32Dll(TDllReason) 
// Entry point function for EPOC Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
    {
    return KErrNone;
    }

#endif

// End of File  

⌨️ 快捷键说明

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