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 #include "javasymbianoslayer.h" |
|
21 #include "logger.h" |
|
22 #include "serverconnectionfactory.h" |
|
23 |
|
24 using namespace java::push; |
|
25 |
|
26 ServerConnectionFactory& getServerConnectionFactory(); |
|
27 |
|
28 EXPORT_C FuncPtr findDllMethod(const char* funcName) |
|
29 { |
|
30 LOG(EJavaPush, EInfo, "btl2capserverconnection findDllMethod() funcName"); |
|
31 JELOG2(EJavaPush); |
|
32 FuncPtr ptr = 0; |
|
33 if (funcName) |
|
34 { |
|
35 if (strcmp(funcName, "getServerConnectionFactory") == 0) |
|
36 { |
|
37 ptr = (FuncPtr) getServerConnectionFactory; |
|
38 } |
|
39 } |
|
40 else |
|
41 { |
|
42 ELOG(EJavaPush, |
|
43 "btl2capserverconnection findDllMethod() funcName == null"); |
|
44 } |
|
45 return ptr; |
|
46 } |