?? callstatus.cpp
字號:
/* ====================================================================
* File: CallStatus.cpp
* Created: 09/06/07
* Author:
* Copyright (c): , All rights reserved
* ==================================================================== */
#include "CallStatusApplication.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 CCallStatusApplication;
}
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 CCallStatusApplication;
}
// 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 + -