guiclock8_main.cpp

来自「基于Symbianos的手机开发与应用中的GUIClock源码」· C++ 代码 · 共 46 行

CPP
46
字号
// GUIClock_Main.cpp
// -------------------
//
// Copyright (c) 2000 Symbian Ltd.  All rights reserved.
//

////////////////////////////////////////////////////////////////////////
//
// GUIClock 
// ----------
//
//
// The example is a simple application containing a single view with
// the text "Hello World !" drawn on it.
// 
// The example includes code for displaying a very simple menu.
//
// --------------------------------------------------------------------- 
//
// This source file contains the single exported function required by 
// all UI applications and the E32Dll function which is also required
// but is not used here.
//
////////////////////////////////////////////////////////////////////////


#include "GUIClock8.h"

//             The entry point for the application code. It creates
//             an instance of the CApaApplication derived
//             class, CExampleApplication.
//
EXPORT_C CApaApplication* NewApplication()
	{
	return new CGUIClockApplication;
	}

//             This function is required by all Symbian OS DLLs. In this 
//             example, it does nothing.
//
GLDEF_C TInt E32Dll(TDllReason)
	{
	return KErrNone;
	}

⌨️ 快捷键说明

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