realtimenetprots/sipfw/SIP/SIPSec/TlsPlugin/src/StaticDllEntry.cpp
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Name        : staticdllentry.h
       
    15 // Part of     : SIPSec TLS Plugin
       
    16 // Interface   : 
       
    17 // Version     : %version: 2.1.1 %
       
    18 //
       
    19 
       
    20 
       
    21 
       
    22 #include <e32std.h>
       
    23 #include "csipsectlsplugin.h"
       
    24 #include "EComImplementationProxy.h"
       
    25 
       
    26 const TImplementationProxy ImplementationTable[] =
       
    27     {
       
    28 	//Implementation UID and pointer to instantiation method
       
    29     IMPLEMENTATION_PROXY_ENTRY( 0x102747D4, CSIPSecTlsPlugin::NewL )
       
    30     };
       
    31 
       
    32 // -----------------------------------------------------------------------------
       
    33 // ImplementationGroupProxy
       
    34 // -----------------------------------------------------------------------------
       
    35 //
       
    36 EXPORT_C const TImplementationProxy*
       
    37 ImplementationGroupProxy( TInt& aTableCount )
       
    38     {
       
    39     aTableCount = sizeof( ImplementationTable ) /
       
    40     			  sizeof( TImplementationProxy );
       
    41     return ImplementationTable;
       
    42     }