helloworldbasic.cpp

来自「使用carbide.c++开发的基于symbian 3rd的操作系统的短信删除软」· C++ 代码 · 共 37 行

CPP
37
字号
/*
* ==============================================================================
*  Name        : helloworldbasic.cpp
*  Part of     : Helloworldbasic
*  Interface   :
*  Description :
*  Version     :
*
*  Copyright (c) 2005-2006 Nokia Corporation.
*  This material, including documentation and any related
*  computer programs, is protected by copyright controlled by
*  Nokia Corporation.
* ==============================================================================
*/

// INCLUDE FILES
#include <eikstart.h>
#include "HelloWorldBasicApplication.h"

/**
 * factory function to create the Hello World Basic application class
 */
LOCAL_C CApaApplication* NewApplication()
	{
	return new CHelloWorldBasicApplication;
	}

/**
 * A normal Symbian OS executable provides an E32Main() function which is
 * called by the operating system to start the program.
 */
GLDEF_C TInt E32Main()
	{
	return EikStart::RunApplication( NewApplication );
	}

⌨️ 快捷键说明

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