tsrc/fusionmpxplayer_test/FusionMpxPlayerTestExeUi/src/FusionPlayerTestApp.cpp
branchRCL_3
changeset 13 112a725ff2c2
parent 11 5294c000a26d
child 14 8970fbd719ec
equal deleted inserted replaced
11:5294c000a26d 13:112a725ff2c2
     1 /*
       
     2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "FusionPlayerTestAppApplication.h"
       
    20 #include <eikstart.h>
       
    21 
       
    22 // Create an application, and return a pointer to it
       
    23 EXPORT_C CApaApplication* NewApplication()
       
    24     {
       
    25     return new CFusionPlayerTestAppApplication;
       
    26     }
       
    27 
       
    28 // ---------------------------------------------------------
       
    29 // E32Main()
       
    30 // Entry point function for new (>= 9.0) EPOC Apps (exe)
       
    31 // Returns: System Wide error codes or KErrNone if all goes well
       
    32 // ---------------------------------------------------------
       
    33 //
       
    34 GLDEF_C TInt E32Main()
       
    35     {
       
    36     return EikStart::RunApplication( NewApplication );
       
    37     }
       
    38