callcontinuity/vccpropertyhandler/src/vccuipropertyhandlerdllmain.cpp
branchRCL_3
changeset 22 d38647835c2e
parent 0 a4daefaec16c
equal deleted inserted replaced
21:f742655b05bf 22:d38647835c2e
       
     1 /*
       
     2 * Copyright (c) 2007 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:   main class for dll
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include <e32std.h>		 // GLDEF_C
       
    21 
       
    22 #ifndef EKA2 // for EKA1 only
       
    23 
       
    24 EXPORT_C TInt E32Dll(TDllReason /*aReason*/)
       
    25 // Called when the DLL is loaded and unloaded. Note: have to define
       
    26 // epoccalldllentrypoints in MMP file to get this called in THUMB.
       
    27 	{
       
    28 	return KErrNone;
       
    29 	}
       
    30 	
       
    31 
       
    32 #endif
       
    33 		
       
    34 
       
    35