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

📄 vrexapp.cpp

📁 S60 实现了录制和播放的功能
💻 CPP
字号:
/*
* ============================================================================
*  Name     : CVRexApp from VRexApp.cpp
*  Part of  : Video Example
*  Created  : 30/08/2006 by Forum  Nokia
*  Implementation notes:
*  Version  : 2.0
*  Copyright: Nokia Corporation, 2006
* ============================================================================
*/

// INCLUDE FILES
#ifdef __SERIES60_3X__
#include <eikstart.h>
#endif

#include "VRexApp.h"
#include "VRexDocument.h"

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

// ---------------------------------------------------------
// CVRexApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CVRexApp::AppDllUid() const
    {
    return KUidVRex;
    }


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

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

#ifndef __SERIES60_3X__
// ---------------------------------------------------------
// E32Dll(TDllReason)
// Entry point function for EPOC Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
{
    return KErrNone;
}
#else
// ---------------------------------------------------------
// E32Main()
// Entry point function for new (>= 9.0) EPOC Apps (exe)
// Returns: Sistem Wide error codes or KErrNone if all goes well
// ---------------------------------------------------------
//
GLDEF_C TInt E32Main()
{
	return EikStart::RunApplication( NewApplication );
}
#endif

// End of File

⌨️ 快捷键说明

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