📄 settingexample.cpp
字号:
/*
* ============================================================================
* Name : SettingExample.cpp
* Part of : SettingExample
* Created : 29/05/2006 by Forum Nokia
* Version : 2.0
* Copyright: Forum Nokia
* ============================================================================
*/
#include "SettingExampleApplication.h"
#ifdef __SERIES60_3X__
#include <eikstart.h>
// Create an application, and return a pointer to it
EXPORT_C CApaApplication* NewApplication()
{
return new CSettingExampleApplication;
}
// ---------------------------------------------------------
// E32Main()
// Entry point function for new (>= 9.0) EPOC Apps (exe)
// Returns: System Wide error codes or KErrNone if all goes well
// ---------------------------------------------------------
//
GLDEF_C TInt E32Main()
{
return EikStart::RunApplication( NewApplication );
}
#else
// Create an application, and return a pointer to it
LOCAL_C CApaApplication* NewApplication()
{
return (new CSettingExampleApplication);
}
// ---------------------------------------------------------
// E32Dll(TDllReason)
// Entry point function for EPOC Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
{
return KErrNone;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -