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

📄 oandx.cpp

📁 Symbian OS C++ for Mobile Phones v3 Example Code
💻 CPP
字号:
// Copyright (c) 2004 - 2006, Symbian Software Ltd. All rights reserved.

#include <eikstart.h>

#include "OandXApplication.h"


EXPORT_C CApaApplication* NewApplication()
/**
	Standard exported function creates new instance of application object.
	
	@return					New instance of application object, NULL
							if not enough memory.  The returned object
							is only CBase initialized, i.e. the heap
							space is allocated and zeroed, and the constructor
							is run.  No secondary initialization is
							performed.
 */
	{
	return new COandXApplication;
	}

GLDEF_C TInt E32Main()
/**
	Standard entrypoint function for UI applications.
	
	@return					Return code from EikStart::RunApplication.
 */
	{
	return EikStart::RunApplication( NewApplication );
	}

⌨️ 快捷键说明

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