📄 symbianosunitapp.cpp
字号:
// SymbianOSUnitApp.cpp
// -------------------
//
// Copyright (c) 2003-2006 Penrillian Ltd. All rights reserved.
// Web: www.penrillian.com
//
#include "SymbianOSUnit.h"
#if defined UIQ3 || defined SERIES60_3RD
#include <eikstart.h>
#endif
// The entry point for the application code. It creates
// an instance of the CApaApplication derived
// class, CSymbianOSUnitApplication.
//
EXPORT_C CApaApplication* NewApplication()
{
CApaApplication* application = NULL;
TRAPD(err, application = CSymbianOSUnitApplication::NewL());
return application;
}
#if defined UIQ3 || defined SERIES60_3RD
GLDEF_C TInt E32Main()
{
return EikStart::RunApplication(NewApplication);
}
#else
GLDEF_C TInt E32Dll(TDllReason)
{
return KErrNone;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -