equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-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 // ETHINT.MMP |
|
15 // ethint.nif - DLL containing main body of Ethernet CFProtocol |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file |
|
21 */ |
|
22 |
|
23 TARGET ethint.nif |
|
24 TARGETTYPE DLL |
|
25 UID 0x1000008d 0x10281DDD |
|
26 VENDORID 0x70000001 |
|
27 |
|
28 |
|
29 #if defined(WINS) |
|
30 DEFFILE EthProto.DEF |
|
31 #elif defined(GCC32) |
|
32 DEFFILE EthProto.DEF |
|
33 #else |
|
34 DEFFILE ethproto.def |
|
35 #endif |
|
36 |
|
37 #include <comms-infras/commsdebugutility.mmh> |
|
38 |
|
39 SOURCEPATH ../EthInt |
|
40 SOURCE Ethbase.cpp |
|
41 SOURCE CLanxBearer.cpp |
|
42 SOURCE CLanIp4Bearer.cpp |
|
43 SOURCE CLanIp6Bearer.cpp |
|
44 SOURCE Pktdrv.cpp |
|
45 SOURCE ethmcpr.cpp |
|
46 SOURCE EthConfig.cpp |
|
47 |
|
48 SOURCEPATH ../log |
|
49 SOURCE eth_log.cpp |
|
50 |
|
51 USERINCLUDE ../EthInt |
|
52 USERINCLUDE ../INC |
|
53 USERINCLUDE ../../../linklayercontrol/networkinterfacemgr/agentprcore/inc |
|
54 OS_LAYER_SYSTEMINCLUDE_SYMBIAN |
|
55 |
|
56 LIBRARY euser.lib |
|
57 LIBRARY esock.lib |
|
58 LIBRARY esocksvr.lib |
|
59 LIBRARY serverden.lib |
|
60 LIBRARY insock.lib |
|
61 LIBRARY efsrv.lib |
|
62 LIBRARY mbufmgr.lib |
|
63 LIBRARY netmeta.lib |
|
64 LIBRARY commsfw.lib |
|
65 LIBRARY commsdat.lib |
|
66 LIBRARY coreproviders.lib |
|
67 LIBRARY agentprcore.lib |
|
68 LIBRARY nodemessages.lib |
|
69 LIBRARY meshmachine.lib |
|
70 LIBRARY netinterfaces.lib |
|
71 LIBRARY factories.lib |
|
72 |
|
73 START WINS |
|
74 BASEADDRESS 0x7ff40000 |
|
75 END |
|
76 |
|
77 //MI support |
|
78 #include <elements/sd_mintercept.mmh> |
|
79 |
|
80 CAPABILITY CommDD PowerMgmt ReadDeviceData WriteDeviceData TrustedUI ProtServ NetworkControl NetworkServices LocalServices ReadUserData WriteUserData |
|
81 |
|
82 SMPSAFE |