?? dbms.cpp
字號(hào):
/*
* ============================================================================
* Name : DBMS from DBMS.cpp
* Part of : DBMS
* Created : 04.11.2006 by Forum Nokia
* Version : 2.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#include "DBMSApplication.h"
#if defined __SERIES60_3X__
#include <eikstart.h>
#endif
// ---------------------------------------------------------------------------
// NewApplication()
//
// Return new instance of the DBMS application.
// ---------------------------------------------------------------------------
EXPORT_C CApaApplication* NewApplication()
{
return (static_cast<CApaApplication*>(new CDBMSApplication));
}
#ifndef __SERIES60_3X__
// ---------------------------------------------------------
// E32Dll(TDllReason)
// Entry point function for EPOC Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
{
return KErrNone;
}
#else
// ---------------------------------------------------------
// E32Main()
// Entry point function for new (>= 9.0) EPOC Apps (exe)
// Returns: Sistem Wide error codes or KErrNone if all goes well
// ---------------------------------------------------------
//
GLDEF_C TInt E32Main()
{
return EikStart::RunApplication( NewApplication );
}
#endif
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -