videofeeds/mrssplugin/src/DllMain.cpp
branchRCL_3
changeset 23 befca0ec475f
parent 0 96612d01cf9f
equal deleted inserted replaced
22:839377eedc2b 23:befca0ec475f
       
     1 /*
       
     2 * Copyright (c) 2004-2007 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:    RSS plugin entry point*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 
       
    20 #include <e32std.h>
       
    21 #include <ecom/implementationproxy.h>
       
    22 #include "IptvEngineUids.h"
       
    23 #include "CIptvRssPlugin.h"
       
    24 
       
    25 // --------------------------------------------------------------------------
       
    26 // Provide a key pair value table.
       
    27 // Used to identify the correct construction function
       
    28 // for the requested interface.
       
    29 // --------------------------------------------------------------------------
       
    30 //
       
    31 const TImplementationProxy ImplementationTable[] =
       
    32     {
       
    33     //lint -e{1924, 611} Errors inside system macro.
       
    34     IMPLEMENTATION_PROXY_ENTRY( KIptvRssPluginImplementationUid, CIptvRssPlugin::NewL )
       
    35     };
       
    36 
       
    37 // --------------------------------------------------------------------------
       
    38 // Return an instance of the proxy table.
       
    39 // --------------------------------------------------------------------------
       
    40 //
       
    41 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    42     {
       
    43     aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    44     return ImplementationTable;
       
    45     }
       
    46 
       
    47 #ifndef EKA2
       
    48 
       
    49 // Standard Symbian OS DLL entry point.
       
    50 // DO NOT REMOVE.
       
    51 TBool E32Dll( TDllReason )
       
    52     {
       
    53     return ETrue;
       
    54     }
       
    55 #endif // EKA2