|
1 // Copyright (c) 2002-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 TARGET rawip.nif |
|
17 TARGETTYPE DLL |
|
18 UID 0x10003d3a 0x10206860 |
|
19 |
|
20 // Used to specify if the rawip.nif should be specifically built to the |
|
21 // functionality of TI basebands, where a two-byte header is appended |
|
22 // to all incoming and outgoing packets (to specify the protocol being |
|
23 // used). This macro is commented out as part of fix INC113695 propagation to v94 |
|
24 // MACRO RAWIP_HEADER_APPENDED_TO_PACKETS |
|
25 |
|
26 // Used by UmtsNifControlIf. Networking defect DEF027856 reversed the meaning |
|
27 // of this, so we don't define it any more. |
|
28 //MACRO MM_ETEL_API |
|
29 |
|
30 // Do not add the non-callable exports to the DEF files |
|
31 // Remove this line temporarily if we need to add new exports |
|
32 NOEXPORTLIBRARY |
|
33 |
|
34 #if defined(WINS) |
|
35 DEFFILE RawIPNif.DEF |
|
36 #elif defined(GCC32) |
|
37 DEFFILE RawIPNif.DEF |
|
38 #else |
|
39 DEFFILE RawIPNif.def |
|
40 #endif |
|
41 |
|
42 SOURCEPATH ../src |
|
43 |
|
44 SOURCE DllMain.cpp |
|
45 SOURCE RawIPNifMain.cpp |
|
46 SOURCE RawIPNifMainFactory.cpp |
|
47 SOURCE IPv4ProtocolIf.cpp |
|
48 SOURCE IPv6ProtocolIf.cpp |
|
49 SOURCE ProtocolIfBase.cpp |
|
50 SOURCE BcaIoController.cpp |
|
51 SOURCE BcaController.cpp |
|
52 SOURCE Sender.cpp |
|
53 SOURCE Receiver.cpp |
|
54 SOURCE IPTagHeader.cpp |
|
55 SOURCE bttlog.cpp |
|
56 |
|
57 |
|
58 USERINCLUDE ../inc |
|
59 |
|
60 OS_LAYER_SYSTEMINCLUDE |
|
61 |
|
62 #include <networking/packetlogger.mmh> |
|
63 |
|
64 LIBRARY euser.lib |
|
65 LIBRARY nifman.lib |
|
66 LIBRARY insock.lib |
|
67 LIBRARY etelpckt.lib |
|
68 LIBRARY mbufmgr.lib |
|
69 LIBRARY esock.lib |
|
70 |
|
71 |
|
72 START WINS |
|
73 BASEADDRESS 0x47E00000 |
|
74 END |
|
75 |
|
76 CAPABILITY CommDD PowerMgmt ReadDeviceData WriteDeviceData TrustedUI ProtServ NetworkControl NetworkServices LocalServices ReadUserData WriteUserData |
|
77 VENDORID 0x70000001 |
|
78 |
|
79 UNPAGED |