httpfilters/uaproffilter/src/DllEntryPoint.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 21 Jun 2010 16:17:02 +0300
branchRCL_3
changeset 15 bdd8a827a7de
parent 0 b16258d2340f
permissions -rw-r--r--
Revision: 201022 Kit: 2010125

/*
* Copyright (c) 2003 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  Implementation of the DLL Entry Point.   
*      
*
*/


// INCLUDE FILES

#include <s32std.h>
#include <ecom/implementationproxy.h>
#include "uaproffilter.h"

/**
* Implementation proxy data for this dll (instantiation method per UID).
*/
const TImplementationProxy KImplementationTable[] = 
    {
        { { 0x10200A8A }, (TProxyNewLPtr) CHttpUAProfFilter::InstallFilterL }
    };

/**
* Get implementation proxy data (exported ECOM dll interface).
* @param aTableCount Table row count is returned here.
* @return Implementation proxy data.
*/
EXPORT_C const TImplementationProxy* ImplementationGroupProxy
    ( TInt& aTableCount )
    {
    aTableCount = sizeof(KImplementationTable) / sizeof(TImplementationProxy);
    return KImplementationTable;
    }