multimediacommsengine/tsrc/MCETestUI/MCETestUIPlugin/inc/EComImplementationProxy.h
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     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:    ECom 8.x compatibility definition
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __ECOMIMPLEMENTATIONPROXY_H__
       
    21 #define __ECOMIMPLEMENTATIONPROXY_H__
       
    22 
       
    23 // INCLUDES
       
    24 #include <ecom/ImplementationProxy.h>
       
    25 
       
    26 // Disabled PC-Lint warning for "suspicious typecast" caused by Symbian's
       
    27 // ECom declarations
       
    28 /*lint -e611 */
       
    29 
       
    30 // 8.x ECOM compatibility - EABI requires the use of IMPLEMENTATION_PROXY_ENTRY
       
    31 // (i.e. define IMPLEMENTATION_PROXY_ENTRY locally on pre 8.x systems)
       
    32 #ifndef IMPLEMENTATION_PROXY_ENTRY
       
    33 #define IMPLEMENTATION_PROXY_ENTRY( aUid, aFuncPtr ) { { aUid }, aFuncPtr }
       
    34 #endif
       
    35 
       
    36 #endif // __ECOMIMPLEMENTATIONPROXY_H__