|
1 /* |
|
2 * ============================================================================== |
|
3 * Name : dllmain.cpp |
|
4 * Part of : |
|
5 * Description : |
|
6 * Version : |
|
7 * |
|
8 * Copyright ?2004 Nokia Corporation. |
|
9 * This material, including documentation and any related |
|
10 * computer programs, is protected by copyright controlled by |
|
11 * Nokia Corporation. All rights are reserved. Copying, |
|
12 * including reproducing, storing, adapting or translating, any |
|
13 * or all of this material requires the prior written consent of |
|
14 * Nokia Corporation. This material also contains confidential |
|
15 * information which may not be disclosed to others without the |
|
16 * prior written consent of Nokia Corporation. |
|
17 * ============================================================================== |
|
18 */ |
|
19 #include <e32std.h> |
|
20 #include <implementationproxy.h> |
|
21 #include "clcvtengine.h" |
|
22 |
|
23 // Map the interface UIDs to implementation factory functions |
|
24 const TImplementationProxy Implementations[] = |
|
25 { |
|
26 IMPLEMENTATION_PROXY_ENTRY( 0x20021342, CLcVtEngine::NewL ) |
|
27 }; |
|
28 |
|
29 // ----------------------------------------------------------------------------- |
|
30 // ImplementationGroupProxy |
|
31 // |
|
32 // Exported proxy for instantiation method resolution |
|
33 // ----------------------------------------------------------------------------- |
|
34 // |
|
35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aCount ) |
|
36 { |
|
37 aCount = sizeof( Implementations ) / sizeof( TImplementationProxy ); |
|
38 return Implementations; |
|
39 } |