sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// This file contains the definition for the TImplementationProxy structure.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@publishedAll
|
sl@0
|
21 |
@released
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef __IMPLEMENTATIONPROXY_H__
|
sl@0
|
25 |
#define __IMPLEMENTATIONPROXY_H__
|
sl@0
|
26 |
|
sl@0
|
27 |
// ____________________________________________________________________________
|
sl@0
|
28 |
// INCLUDES
|
sl@0
|
29 |
|
sl@0
|
30 |
|
sl@0
|
31 |
#include <e32std.h>
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
// ____________________________________________________________________________
|
sl@0
|
35 |
// TYPES - TImplementationProxy
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
Pre-defined function pointer type used in TImplementationProxy
|
sl@0
|
39 |
@leave KErrNoMemory
|
sl@0
|
40 |
@leave Or any of the System Wide error codes
|
sl@0
|
41 |
@return TAny* A pointer to the instantiated interface implementation.
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
typedef TAny* (*TFuncPtr)();
|
sl@0
|
44 |
|
sl@0
|
45 |
/**
|
sl@0
|
46 |
Typedef used to cover the difference between EABI and older handling
|
sl@0
|
47 |
of the instantiation method pointer.
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
#if defined(__EABI__) || defined(__GCCXML__) || defined(__X86GCC__) || defined(__GCCE__)
|
sl@0
|
50 |
typedef TFuncPtr TProxyNewLPtr;
|
sl@0
|
51 |
#else
|
sl@0
|
52 |
typedef TAny* TProxyNewLPtr;
|
sl@0
|
53 |
#endif
|
sl@0
|
54 |
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
The structure that defines the pairing required by the ECOM framework
|
sl@0
|
58 |
to correctly identify the instantiation method pointer to provide
|
sl@0
|
59 |
to a client's resolution request.
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
typedef struct
|
sl@0
|
62 |
{
|
sl@0
|
63 |
/** The unique UID for an Interface Implementation */
|
sl@0
|
64 |
TUid iImplementationUid;
|
sl@0
|
65 |
/** The pointer to the instantiation method for the Interface Implementation identified by the UID.*/
|
sl@0
|
66 |
TProxyNewLPtr iNewLFuncPtr;
|
sl@0
|
67 |
} TImplementationProxy;
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
Macro to initialise an element of a static array of TImplementationProxy objects.
|
sl@0
|
71 |
This macro deals with casting the function pointer to the type used in the structure.
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
#define IMPLEMENTATION_PROXY_ENTRY(aUid, aFuncPtr) {{aUid},(TProxyNewLPtr)(aFuncPtr)}
|
sl@0
|
74 |
|
sl@0
|
75 |
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
76 |
#include <ecom/extendedinterfaceimplementationproxy.h>
|
sl@0
|
77 |
#endif
|
sl@0
|
78 |
|
sl@0
|
79 |
|
sl@0
|
80 |
#endif // __IMPLEMENTATIONPROXY_H__
|