equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004-2009 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 * Name : EComImplementationProxy.h |
|
16 * Part of : Common |
|
17 * ECom 8.x compatibility definition |
|
18 * Version : SIP/4.0 |
|
19 * |
|
20 */ |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 /** |
|
26 @internalComponent |
|
27 */ |
|
28 |
|
29 #ifndef __ECOMIMPLEMENTATIONPROXY_H__ |
|
30 #define __ECOMIMPLEMENTATIONPROXY_H__ |
|
31 |
|
32 // INCLUDES |
|
33 #include <ecom/implementationproxy.h> |
|
34 |
|
35 // Disabled PC-Lint warning for "suspicious typecast" caused by Symbian's |
|
36 // ECom declarations |
|
37 /*lint -e611 */ |
|
38 |
|
39 // 8.x ECOM compatibility - EABI requires the use of IMPLEMENTATION_PROXY_ENTRY |
|
40 // (i.e. define IMPLEMENTATION_PROXY_ENTRY locally on pre 8.x systems) |
|
41 #ifndef IMPLEMENTATION_PROXY_ENTRY |
|
42 #define IMPLEMENTATION_PROXY_ENTRY( aUid, aFuncPtr ) { { aUid }, aFuncPtr } |
|
43 #endif |
|
44 |
|
45 #endif // __ECOMIMPLEMENTATIONPROXY_H__ |