httpfilters/uaproffilter/src/DllEntryPoint.cpp
changeset 0 b16258d2340f
equal deleted inserted replaced
-1:000000000000 0:b16258d2340f
       
     1 /*
       
     2 * Copyright (c) 2003 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 "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:  Implementation of the DLL Entry Point.   
       
    15 *      
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 
       
    22 #include <s32std.h>
       
    23 #include <ecom/implementationproxy.h>
       
    24 #include "uaproffilter.h"
       
    25 
       
    26 /**
       
    27 * Implementation proxy data for this dll (instantiation method per UID).
       
    28 */
       
    29 const TImplementationProxy KImplementationTable[] = 
       
    30     {
       
    31         { { 0x10200A8A }, (TProxyNewLPtr) CHttpUAProfFilter::InstallFilterL }
       
    32     };
       
    33 
       
    34 /**
       
    35 * Get implementation proxy data (exported ECOM dll interface).
       
    36 * @param aTableCount Table row count is returned here.
       
    37 * @return Implementation proxy data.
       
    38 */
       
    39 EXPORT_C const TImplementationProxy* ImplementationGroupProxy
       
    40     ( TInt& aTableCount )
       
    41     {
       
    42     aTableCount = sizeof(KImplementationTable) / sizeof(TImplementationProxy);
       
    43     return KImplementationTable;
       
    44     }