ImagePrint/ImagePrintUI/imageprintprovider/src/dllmain.cpp
branchGCC_SURGE
changeset 25 59ea2209bb67
parent 23 08cc4cc059d4
parent 15 a92d00fca574
equal deleted inserted replaced
23:08cc4cc059d4 25:59ea2209bb67
     1 /*
       
     2 * Copyright (c) 2004 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:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32std.h>
       
    20 #include <ecom/implementationproxy.h>
       
    21 
       
    22 #include "aiwprintingprovideruid.h"
       
    23 #include "caiwprintpreviewprovider.h"
       
    24 
       
    25 // Define the interface UIDs
       
    26 const TImplementationProxy ImplementationTable[] =
       
    27     {
       
    28     IMPLEMENTATION_PROXY_ENTRY(KAiwPrintingProviderImplUid,
       
    29                                CAiwPrintPreviewProvider::NewL) 
       
    30                                                          
       
    31     };
       
    32     
       
    33 // The one and only exported function that is the ECom entry point
       
    34 EXPORT_C const TImplementationProxy* ImplementationGroupProxy
       
    35         (TInt& aTableCount)
       
    36     {
       
    37     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    38     return ImplementationTable;
       
    39     }
       
    40 
       
    41 //  End of File