usbuis/imageprintuiprovider/src/dllmain.cpp
changeset 93 2dc695882abd
parent 89 3592750162a5
equal deleted inserted replaced
89:3592750162a5 93:2dc695882abd
     1 /*
       
     2 * Copyright (c) 2006 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:  Ecom plugin info for provider
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 /// INCLUDES
       
    22 #include <e32std.h>
       
    23 #include <implementationproxy.h>
       
    24 #include "aiwprintingprovideruid.h"
       
    25 #include "caiwprintingprovider.h"
       
    26 
       
    27 
       
    28 // Define the interface UIDs
       
    29 const TImplementationProxy ImplementationTable[] =
       
    30     {
       
    31  
       
    32     IMPLEMENTATION_PROXY_ENTRY(KAiwPrintingProviderImplUid,
       
    33                                CAiwPrintingProvider::NewL),                        
       
    34     };
       
    35     
       
    36 // The one and only exported function that is the ECom entry point
       
    37 EXPORT_C const TImplementationProxy* ImplementationGroupProxy
       
    38         (TInt& aTableCount)
       
    39     {
       
    40     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    41     return ImplementationTable;
       
    42     }
       
    43 
       
    44 #ifndef EKA2
       
    45 /**
       
    46  * Standard Symbian OS DLL entry point.
       
    47  */
       
    48 TBool E32Dll(TDllReason)
       
    49     {
       
    50     return ETrue;
       
    51     }
       
    52 #endif
       
    53