equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 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: lookup |
|
15 * |
|
16 */ |
|
17 |
|
18 #include <string.h> //For strcmp |
|
19 |
|
20 #include "javasymbianoslayer.h" |
|
21 #include "logger.h" |
|
22 |
|
23 #include "extensionplugininterface.h" |
|
24 |
|
25 using namespace java::captain; |
|
26 |
|
27 ExtensionPluginInterface* getExtensionPlugin(); |
|
28 |
|
29 EXPORT_C FuncPtr findDllMethod(const char* funcName) |
|
30 { |
|
31 JELOG2(EJavaCaptain); |
|
32 FuncPtr ptr = 0; |
|
33 if (funcName) |
|
34 { |
|
35 if (strcmp(funcName, "getExtensionPlugin") == 0) |
|
36 { |
|
37 ptr = (FuncPtr)getExtensionPlugin; |
|
38 } |
|
39 } |
|
40 else |
|
41 { |
|
42 ELOG(EJavaCaptain, "sample extensionplugin findDllMethod() funcName == null"); |
|
43 } |
|
44 return ptr; |
|
45 } |