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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <string> //For strcmp |
|
20 |
|
21 #include "javasymbianoslayer.h" |
|
22 #include "logger.h" |
|
23 |
|
24 #include "pushregistryhandler.h" |
|
25 |
|
26 using namespace java::push; |
|
27 using namespace java::captain; |
|
28 |
|
29 ExtensionPluginInterface* getExtensionPlugin(); |
|
30 |
|
31 EXPORT_C FuncPtr findDllMethod(const char* funcName) |
|
32 { |
|
33 JELOG2(EJavaPush); |
|
34 FuncPtr ptr = 0; |
|
35 if (funcName) |
|
36 { |
|
37 if (strcmp(funcName, "getExtensionPlugin") == 0) |
|
38 { |
|
39 ptr = (FuncPtr)getExtensionPlugin; |
|
40 } |
|
41 } |
|
42 else |
|
43 { |
|
44 ELOG(EJavaPush, "pushregistryplugin findDllMethod() funcName == null"); |
|
45 } |
|
46 return ptr; |
|
47 } |