📄 testmtms.cpp
字号:
/*
============================================================================
Name : TestMtms.cpp
Author : Tomken
Copyright : (C) 2008-2009
Description : Main application class
============================================================================
*/
// INCLUDE FILES
#include "TestMtmsApplication.h"
#ifdef EKA2
#include <eikstart.h>
LOCAL_C CApaApplication* NewApplication()
{
return new CTestMtmsApplication;
}
GLDEF_C TInt E32Main()
{
return EikStart::RunApplication( NewApplication );
}
#else
EXPORT_C CApaApplication* NewApplication()
{
return new CTestMtmsApplication;
}
GLDEF_C TInt E32Dll( TDllReason )
{
return KErrNone;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -