mmsexample.cpp

来自「Symbian c++ 的彩信发送接收实例」· C++ 代码 · 共 35 行

CPP
35
字号
/*
 * ============================================================================
 *  Name     : MMSExample from MMSExample.cpp
 *  Part of  : MMSExample
 *  Created  : 04.11.2006 by Forum Nokia
 *  Version  : 2.0
 *  Copyright: Nokia Corporation
 * ============================================================================
 */

#include "MMSExampleApp.h"

#include <eikstart.h>

// ---------------------------------------------------------------------------
// NewApplication()
//
// Return new instance of the DBMS application.
// ---------------------------------------------------------------------------
EXPORT_C CApaApplication* NewApplication()
    {
    return (static_cast<CApaApplication*>(new CMMSExampleApplication));
    }

// ---------------------------------------------------------
// 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 );
	}

⌨️ 快捷键说明

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