?? oandx.cpp
字號:
// Copyright (c) 2004 - 2006, Symbian Software Ltd. All rights reserved.
#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 );
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -