equal
deleted
inserted
replaced
|
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file tepluginentry.cpp |
|
18 @internalTechnology |
|
19 */ |
|
20 |
|
21 #include <e32std.h> |
|
22 #include <ecom/implementationproxy.h> |
|
23 #include "tetestcontentprocessor.h" |
|
24 |
|
25 // Define the interface UIDs |
|
26 const TImplementationProxy ImplementationTable[] = |
|
27 { |
|
28 IMPLEMENTATION_PROXY_ENTRY( 0x20021CE5, CTestContentProcessor::NewL) |
|
29 }; |
|
30 |
|
31 // The one and only exported function that is the ECom entry point |
|
32 EXPORT_C const TImplementationProxy* ImplementationGroupProxy |
|
33 (TInt& aTableCount) |
|
34 { |
|
35 aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy ); |
|
36 |
|
37 return ImplementationTable; |
|
38 } |
|
39 |
|
40 /** |
|
41 * Standard Symbian OS DLL entry point. |
|
42 */ |
|
43 #ifndef EKA2 |
|
44 TBool E32Dll(TDllReason) |
|
45 { |
|
46 return ETrue; |
|
47 } |
|
48 #endif // EKA2 |
|
49 // End of File |