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

📄 greg2app.cpp

📁 著名的 helix realplayer 基于手机 symbian 系统的 播放器全套源代码
💻 CPP
字号:
/*
 * ============================================================================
 *  Name     : CGreg2App from Greg2App.cpp
 *  Part of  : greg2
 *  Created  : 12/11/2002 by 
 *  Implementation notes:
 *
 *     Initial content was generated by Series 60 AppWizard.
 *  Version  :
 *  Copyright: 
 * ============================================================================
 */

// INCLUDE FILES
#include    "Greg2App.h"
#include    "Greg2Document.h"

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

// ---------------------------------------------------------
// CGreg2App::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CGreg2App::AppDllUid() const
{
    return KUidgreg2;
}

   
// ---------------------------------------------------------
// CGreg2App::CreateDocumentL()
// Creates CGreg2Document object
// ---------------------------------------------------------
//
CApaDocument* CGreg2App::CreateDocumentL()
{
    return CGreg2Document::NewL( *this );
}

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

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

// End of File  

⌨️ 快捷键说明

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