⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iapconnectapp.cpp

📁 symbian中如何取得内部联网方式
💻 CPP
字号:
/*
* ============================================================================
*  Name     : CIAPConnectApp from IAPConnectApp.cpp
*  Part of  : Internet Access Points Example v2.0
*  Created  : 01.09.2006 by Forum Nokia
*  Version  : 2.0
*  Copyright: Forum Nokia
* ============================================================================
*/

// INCLUDE FILES
#ifdef __SERIES60_3X__
    #include <eikstart.h>
#endif

#include "IAPConnectApp.h"
#include "IAPConnectDocument.h"

// ========================== MEMBER FUNCTIONS ===============================

// ---------------------------------------------------------------------------
// CIAPConnectApp::AppDllUid()
//
// Returns application UID
// ---------------------------------------------------------------------------
//
TUid CIAPConnectApp::AppDllUid() const
    {
    return KUidIAPConnect;
    }

   
// ---------------------------------------------------------------------------
// CIAPConnectApp::CreateDocumentL()
//
// Creates CIAPConnectDocument object
// ---------------------------------------------------------------------------
//
CApaDocument* CIAPConnectApp::CreateDocumentL()
    {
    return CIAPConnectDocument::NewL( *this );
    }

// ========================= OTHER EXPORTED FUNCTIONS ========================
//

#ifdef __SERIES60_3X__  //////////// 3rd Ed
// ---------------------------------------------------------------------------
// NewApplication() (3rd Edition)
//
// Constructs CIAPConnectApp
// Returns: created application object
// ---------------------------------------------------------------------------
//
LOCAL_C CApaApplication* NewApplication()
	{
	return new CIAPConnectApp;
	}

// -----------------------------------------------------------------------------
//	Entry point function for Symbian Apps (3rd Edition)
// -----------------------------------------------------------------------------
GLDEF_C TInt E32Main()
	{
	return EikStart::RunApplication( NewApplication );
	}

#else /////////// 2nd Ed

// ---------------------------------------------------------------------------
// NewApplication() (2nd Edition) 
//
// Constructs CIAPConnectApp
// Returns: created application object
// ---------------------------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
    {
    return new CIAPConnectApp;
    }
// -----------------------------------------------------------------------------
//  Entry point function for Symbian Apps (2nd Edition )
// -----------------------------------------------------------------------------
GLDEF_C TInt E32Dll( TDllReason )
	{
	return KErrNone;
	}
#endif
// End of File  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -