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

📄 example2dapp.cpp

📁 基于SYMBIAN OS,series 60平台的经典游戏,超级马力
💻 CPP
字号:
/* ============================================================================
*  Name     : CExample2DApp from Example2DApp.cpp
*  Part of  : Example2D
*  Created  : 23.09.2005 by 
* 
*  Implementation notes:
*
*     Initial content was generated by Series 90 Application Wizard.
*  Version  :
*  Copyright: 
* ============================================================================
*/

// INCLUDE FILES

#ifdef __SERIES60_30__

#include <eikstart.h>

#endif

#include    "Example2DApp.h"
#include    "Example2DDocument.h"



TUid CExample2DApp::AppDllUid() const
    {
    return KUidExample2D;
    }


   
CApaDocument* CExample2DApp::CreateDocumentL()
    {
    return CExample2DDocument::NewL( *this );
    }


TFileName CExample2DApp::ResourceFileName() const
	{
	return TFileName();
	}


EXPORT_C CApaApplication* NewApplication()
    {
    return new CExample2DApp;
    }

#ifdef __SERIES60_30__
    
// ---------------------------------------------------------
// E32Main() 
// Entry point function for Symbian OS v9 EXE Application
// ---------------------------------------------------------
//
GLDEF_C TInt E32Main()
	{
	return EikStart::RunApplication( NewApplication );
	}

#else

// ---------------------------------------------------------
// E32Dll(TDllReason) 
// Entry point function for Symbian DLL Application
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
    {
    return KErrNone;
    }

#endif

// End of file


⌨️ 快捷键说明

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