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

📄 recorderapp.cpp

📁 play stream media file. OS: symbian s60
💻 CPP
字号:
/*
* ============================================================================
*  Name     : Recorderapp.cpp
*  Part of  : RecorderExample
*  Created  : 20.03.2005 by Forum Nokia
*  Version  : 1.0.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

// INCLUDE FILES
#include "RecorderApp.h"
#include "RecorderDocument.h"


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

// ---------------------------------------------------------
// CRecorderApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
TUid CRecorderApp::AppDllUid() const
    {
    return KUidRecorder;
    }

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

// ================= OTHER EXPORTED FUNCTIONS ==============


// ---------------------------------------------------------
// NewApplication() 
// Constructs CRecorderApp
// Returns: CApaDocument*: created application object
// ---------------------------------------------------------
EXPORT_C CApaApplication* NewApplication()
    {
    return new CRecorderApp;
    }

// ---------------------------------------------------------
// E32Dll()
//
// 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 + -