svgtopt/VGRenderer/HWVG/src/HWVGDllMain.cpp
changeset 46 88edb906c587
equal deleted inserted replaced
-1:000000000000 46:88edb906c587
       
     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:  HWVGDllMain Source file
       
    15  *
       
    16 */
       
    17 
       
    18 //  Include Files  
       
    19 
       
    20 #include <e32std.h>		 // GLDEF_C
       
    21 #include "HWVG.pan"		// panic codes
       
    22 
       
    23 class MVGRendererImpl;
       
    24 
       
    25 IMPORT_C MVGRendererImpl* CreateVGRendererImplL();
       
    26 
       
    27 #ifndef EKA2 // for EKA1 only
       
    28 EXPORT_C TInt E32Dll(TDllReason /*aReason*/)
       
    29 // Called when the DLL is loaded and unloaded. Note: have to define
       
    30 // epoccalldllentrypoints in MMP file to get this called in THUMB.
       
    31 
       
    32     {
       
    33     return KErrNone;
       
    34     }
       
    35 #endif
       
    36