📄 alarmnotification.cpp
字号:
/* ====================================================================
* File: alarmnotification.cpp
* Created: 10/16/06
* Author:
* Copyright (c): , All rights reserved
* ==================================================================== */
#include "alarmnotificationApplication.h"
#include <eikstart.h>
#pragma message("Please ensure that you read the ReadMe file.")
#ifdef __UI_FRAMEWORKS_V2__
// Create an application, and return a pointer to it
CApaApplication* NewApplication()
{
return new CAlarmNotificationApplication;
}
TInt E32Main()
{
return EikStart::RunApplication(NewApplication);
}
///////////////////////////////////////////////////////////////////////////////
//
// The following is required for wins on EKA1 (using the exedll target)
//
#if defined(__WINS__) && !defined(EKA2)
EXPORT_C TInt WinsMain(TDesC* aCmdLine)
{
return EikStart::RunApplication(NewApplication, aCmdLine);
}
TInt E32Dll(TDllReason)
{
return KErrNone;
}
#endif
#else // __UI_FRAMEWORKS_V2__
// Create an application, and return a pointer to it
EXPORT_C CApaApplication* NewApplication()
{
return new CAlarmNotificationApplication;
}
// DLL entry point, return that everything is ok
GLDEF_C TInt E32Dll(TDllReason)
{
return KErrNone;
}
#endif // __UI_FRAMEWORKS_V2__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -