usb 1.7.2-prebuild

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (183) hide show
  1. package/.github/workflows/prebuild.yml +62 -0
  2. package/.gitmodules +3 -0
  3. package/LICENSE +7 -0
  4. package/Readme.md +339 -0
  5. package/binding.gyp +90 -0
  6. package/libusb/.gitattributes +11 -0
  7. package/libusb/.private/README.txt +5 -0
  8. package/libusb/.private/bd.cmd +89 -0
  9. package/libusb/.private/bm.sh +54 -0
  10. package/libusb/.private/bwince.cmd +57 -0
  11. package/libusb/.private/post-rewrite.sh +28 -0
  12. package/libusb/.private/pre-commit.sh +42 -0
  13. package/libusb/.private/wbs.txt +61 -0
  14. package/libusb/.private/wbs_wince.txt +42 -0
  15. package/libusb/AUTHORS +78 -0
  16. package/libusb/COPYING +504 -0
  17. package/libusb/ChangeLog +211 -0
  18. package/libusb/INSTALL +234 -0
  19. package/libusb/INSTALL_WIN.txt +73 -0
  20. package/libusb/Makefile.am +28 -0
  21. package/libusb/NEWS +2 -0
  22. package/libusb/PORTING +94 -0
  23. package/libusb/README +28 -0
  24. package/libusb/README.git +41 -0
  25. package/libusb/TODO +2 -0
  26. package/libusb/Xcode/common.xcconfig +49 -0
  27. package/libusb/Xcode/debug.xcconfig +29 -0
  28. package/libusb/Xcode/libusb.xcconfig +21 -0
  29. package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +1 -0
  30. package/libusb/Xcode/libusb_debug.xcconfig +21 -0
  31. package/libusb/Xcode/libusb_release.xcconfig +21 -0
  32. package/libusb/Xcode/release.xcconfig +30 -0
  33. package/libusb/android/README +114 -0
  34. package/libusb/android/jni/Android.mk +23 -0
  35. package/libusb/android/jni/Application.mk +24 -0
  36. package/libusb/android/jni/examples.mk +134 -0
  37. package/libusb/android/jni/libusb.mk +54 -0
  38. package/libusb/android/jni/tests.mk +56 -0
  39. package/libusb/autogen.sh +8 -0
  40. package/libusb/bootstrap.sh +19 -0
  41. package/libusb/configure.ac +304 -0
  42. package/libusb/doc/Makefile.am +9 -0
  43. package/libusb/doc/doxygen.cfg.in +1288 -0
  44. package/libusb/doc/libusb.png +0 -0
  45. package/libusb/examples/Makefile.am +19 -0
  46. package/libusb/examples/dpfp.c +506 -0
  47. package/libusb/examples/dpfp_threaded.c +544 -0
  48. package/libusb/examples/ezusb.c +831 -0
  49. package/libusb/examples/ezusb.h +120 -0
  50. package/libusb/examples/fxload.c +287 -0
  51. package/libusb/examples/getopt/getopt.c +1060 -0
  52. package/libusb/examples/getopt/getopt.h +180 -0
  53. package/libusb/examples/getopt/getopt1.c +188 -0
  54. package/libusb/examples/hotplugtest.c +104 -0
  55. package/libusb/examples/listdevs.c +71 -0
  56. package/libusb/examples/sam3u_benchmark.c +193 -0
  57. package/libusb/examples/xusb.c +1129 -0
  58. package/libusb/libusb/Makefile.am +75 -0
  59. package/libusb/libusb/core.c +2342 -0
  60. package/libusb/libusb/descriptor.c +1199 -0
  61. package/libusb/libusb/hotplug.c +327 -0
  62. package/libusb/libusb/hotplug.h +82 -0
  63. package/libusb/libusb/io.c +2631 -0
  64. package/libusb/libusb/libusb-1.0.def +166 -0
  65. package/libusb/libusb/libusb-1.0.rc +61 -0
  66. package/libusb/libusb/libusb.h +1998 -0
  67. package/libusb/libusb/libusbi.h +1040 -0
  68. package/libusb/libusb/os/darwin_usb.c +2009 -0
  69. package/libusb/libusb/os/darwin_usb.h +162 -0
  70. package/libusb/libusb/os/linux_netlink.c +369 -0
  71. package/libusb/libusb/os/linux_udev.c +307 -0
  72. package/libusb/libusb/os/linux_usbfs.c +2695 -0
  73. package/libusb/libusb/os/linux_usbfs.h +192 -0
  74. package/libusb/libusb/os/netbsd_usb.c +738 -0
  75. package/libusb/libusb/os/openbsd_usb.c +832 -0
  76. package/libusb/libusb/os/poll_posix.c +51 -0
  77. package/libusb/libusb/os/poll_posix.h +11 -0
  78. package/libusb/libusb/os/poll_windows.c +796 -0
  79. package/libusb/libusb/os/poll_windows.h +131 -0
  80. package/libusb/libusb/os/threads_posix.c +82 -0
  81. package/libusb/libusb/os/threads_posix.h +50 -0
  82. package/libusb/libusb/os/threads_windows.c +212 -0
  83. package/libusb/libusb/os/threads_windows.h +87 -0
  84. package/libusb/libusb/os/wince_usb.c +1032 -0
  85. package/libusb/libusb/os/wince_usb.h +131 -0
  86. package/libusb/libusb/os/windows_common.h +108 -0
  87. package/libusb/libusb/os/windows_usb.c +5347 -0
  88. package/libusb/libusb/os/windows_usb.h +971 -0
  89. package/libusb/libusb/strerror.c +199 -0
  90. package/libusb/libusb/sync.c +307 -0
  91. package/libusb/libusb/version.h +18 -0
  92. package/libusb/libusb/version_nano.h +1 -0
  93. package/libusb/libusb-1.0.pc.in +11 -0
  94. package/libusb/msvc/config.h +50 -0
  95. package/libusb/msvc/ddk_build.cmd +175 -0
  96. package/libusb/msvc/errno.h +102 -0
  97. package/libusb/msvc/fxload_2010.vcxproj +170 -0
  98. package/libusb/msvc/fxload_2010.vcxproj.filters +25 -0
  99. package/libusb/msvc/fxload_2012.vcxproj +174 -0
  100. package/libusb/msvc/fxload_2012.vcxproj.filters +25 -0
  101. package/libusb/msvc/fxload_2013.vcxproj +174 -0
  102. package/libusb/msvc/fxload_sources +23 -0
  103. package/libusb/msvc/getopt_2005.vcproj +288 -0
  104. package/libusb/msvc/getopt_2010.vcxproj +131 -0
  105. package/libusb/msvc/getopt_2010.vcxproj.filters +26 -0
  106. package/libusb/msvc/getopt_2012.vcxproj +136 -0
  107. package/libusb/msvc/getopt_2012.vcxproj.filters +26 -0
  108. package/libusb/msvc/getopt_2013.vcxproj +136 -0
  109. package/libusb/msvc/getopt_sources +20 -0
  110. package/libusb/msvc/hotplugtest_2010.vcxproj +163 -0
  111. package/libusb/msvc/hotplugtest_2010.vcxproj.filters +14 -0
  112. package/libusb/msvc/hotplugtest_2012.vcxproj +167 -0
  113. package/libusb/msvc/hotplugtest_2012.vcxproj.filters +14 -0
  114. package/libusb/msvc/hotplugtest_2013.vcxproj +167 -0
  115. package/libusb/msvc/hotplugtest_sources +20 -0
  116. package/libusb/msvc/inttypes.h +295 -0
  117. package/libusb/msvc/libusb.dsw +71 -0
  118. package/libusb/msvc/libusb_2005.sln +95 -0
  119. package/libusb/msvc/libusb_2010.sln +94 -0
  120. package/libusb/msvc/libusb_2012.sln +94 -0
  121. package/libusb/msvc/libusb_2013.sln +100 -0
  122. package/libusb/msvc/libusb_2015.sln +100 -0
  123. package/libusb/msvc/libusb_dll.dsp +194 -0
  124. package/libusb/msvc/libusb_dll_2005.vcproj +436 -0
  125. package/libusb/msvc/libusb_dll_2010.vcxproj +170 -0
  126. package/libusb/msvc/libusb_dll_2010.vcxproj.filters +81 -0
  127. package/libusb/msvc/libusb_dll_2012.vcxproj +175 -0
  128. package/libusb/msvc/libusb_dll_2012.vcxproj.filters +84 -0
  129. package/libusb/msvc/libusb_dll_2013.vcxproj +175 -0
  130. package/libusb/msvc/libusb_dll_wince.vcproj +1243 -0
  131. package/libusb/msvc/libusb_sources +38 -0
  132. package/libusb/msvc/libusb_static.dsp +174 -0
  133. package/libusb/msvc/libusb_static_2005.vcproj +362 -0
  134. package/libusb/msvc/libusb_static_2010.vcxproj +156 -0
  135. package/libusb/msvc/libusb_static_2010.vcxproj.filters +74 -0
  136. package/libusb/msvc/libusb_static_2012.vcxproj +160 -0
  137. package/libusb/msvc/libusb_static_2012.vcxproj.filters +74 -0
  138. package/libusb/msvc/libusb_static_2013.vcxproj +160 -0
  139. package/libusb/msvc/libusb_static_wince.vcproj +1185 -0
  140. package/libusb/msvc/libusb_wince.sln +246 -0
  141. package/libusb/msvc/listdevs.dsp +103 -0
  142. package/libusb/msvc/listdevs_2005.vcproj +360 -0
  143. package/libusb/msvc/listdevs_2010.vcxproj +165 -0
  144. package/libusb/msvc/listdevs_2010.vcxproj.filters +14 -0
  145. package/libusb/msvc/listdevs_2012.vcxproj +169 -0
  146. package/libusb/msvc/listdevs_2012.vcxproj.filters +14 -0
  147. package/libusb/msvc/listdevs_2013.vcxproj +169 -0
  148. package/libusb/msvc/listdevs_sources +19 -0
  149. package/libusb/msvc/listdevs_wince.vcproj +1120 -0
  150. package/libusb/msvc/missing.c +80 -0
  151. package/libusb/msvc/missing.h +32 -0
  152. package/libusb/msvc/stdint.h +256 -0
  153. package/libusb/msvc/stress_2005.vcproj +390 -0
  154. package/libusb/msvc/stress_2010.vcxproj +167 -0
  155. package/libusb/msvc/stress_2010.vcxproj.filters +25 -0
  156. package/libusb/msvc/stress_2012.vcxproj +171 -0
  157. package/libusb/msvc/stress_2012.vcxproj.filters +25 -0
  158. package/libusb/msvc/stress_2013.vcxproj +171 -0
  159. package/libusb/msvc/stress_wince.vcproj +1128 -0
  160. package/libusb/msvc/xusb.dsp +102 -0
  161. package/libusb/msvc/xusb_2005.vcproj +344 -0
  162. package/libusb/msvc/xusb_2010.vcxproj +163 -0
  163. package/libusb/msvc/xusb_2010.vcxproj.filters +14 -0
  164. package/libusb/msvc/xusb_2012.vcxproj +167 -0
  165. package/libusb/msvc/xusb_2012.vcxproj.filters +14 -0
  166. package/libusb/msvc/xusb_2013.vcxproj +167 -0
  167. package/libusb/msvc/xusb_sources +20 -0
  168. package/libusb/msvc/xusb_wince.vcproj +1120 -0
  169. package/libusb/tests/Makefile.am +6 -0
  170. package/libusb/tests/libusb_testlib.h +107 -0
  171. package/libusb/tests/stress.c +160 -0
  172. package/libusb/tests/testlib.c +281 -0
  173. package/libusb.gypi +136 -0
  174. package/libusb_config/config.h +1 -0
  175. package/package.json +69 -0
  176. package/src/device.cc +412 -0
  177. package/src/helpers.h +64 -0
  178. package/src/node_usb.cc +319 -0
  179. package/src/node_usb.h +120 -0
  180. package/src/transfer.cc +148 -0
  181. package/src/uv_async_queue.h +33 -0
  182. package/test/usb.coffee +191 -0
  183. package/usb.js +524 -0
@@ -0,0 +1,1243 @@
1
+ <?xml version="1.0" encoding="Windows-1252"?>
2
+ <VisualStudioProject
3
+ ProjectType="Visual C++"
4
+ Version="8.00"
5
+ Name="libusb-1.0 (dll)"
6
+ ProjectGUID="{6A49B75F-FB1C-45C0-B7C3-A7698255E7E9}"
7
+ RootNamespace="libusb"
8
+ >
9
+ <Platforms>
10
+ <Platform
11
+ Name="STANDARDSDK_500 (ARMV4I)"
12
+ />
13
+ <Platform
14
+ Name="STANDARDSDK_500 (MIPSII)"
15
+ />
16
+ <Platform
17
+ Name="STANDARDSDK_500 (MIPSII_FP)"
18
+ />
19
+ <Platform
20
+ Name="STANDARDSDK_500 (MIPSIV)"
21
+ />
22
+ <Platform
23
+ Name="STANDARDSDK_500 (MIPSIV_FP)"
24
+ />
25
+ <Platform
26
+ Name="STANDARDSDK_500 (SH4)"
27
+ />
28
+ <Platform
29
+ Name="STANDARDSDK_500 (x86)"
30
+ />
31
+ </Platforms>
32
+ <ToolFiles>
33
+ </ToolFiles>
34
+ <Configurations>
35
+ <Configuration
36
+ Name="Debug|STANDARDSDK_500 (ARMV4I)"
37
+ OutputDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\dll"
38
+ IntermediateDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\dll\libusb-1.0"
39
+ ConfigurationType="2"
40
+ CharacterSet="2"
41
+ >
42
+ <Tool
43
+ Name="VCPreBuildEventTool"
44
+ />
45
+ <Tool
46
+ Name="VCCustomBuildTool"
47
+ />
48
+ <Tool
49
+ Name="VCXMLDataGeneratorTool"
50
+ />
51
+ <Tool
52
+ Name="VCWebServiceProxyGeneratorTool"
53
+ />
54
+ <Tool
55
+ Name="VCMIDLTool"
56
+ TargetEnvironment="1"
57
+ />
58
+ <Tool
59
+ Name="VCCLCompilerTool"
60
+ ExecutionBucket="7"
61
+ Optimization="0"
62
+ AdditionalIncludeDirectories=".;..\libusb"
63
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
64
+ MinimalRebuild="true"
65
+ RuntimeLibrary="3"
66
+ WarningLevel="3"
67
+ DebugInformationFormat="3"
68
+ ForcedIncludeFiles=""
69
+ />
70
+ <Tool
71
+ Name="VCManagedResourceCompilerTool"
72
+ />
73
+ <Tool
74
+ Name="VCResourceCompilerTool"
75
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
76
+ AdditionalIncludeDirectories="."
77
+ />
78
+ <Tool
79
+ Name="VCPreLinkEventTool"
80
+ />
81
+ <Tool
82
+ Name="VCLinkerTool"
83
+ OutputFile="$(OutDir)\libusb-1.0.dll"
84
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
85
+ GenerateDebugInformation="true"
86
+ SubSystem="9"
87
+ TargetMachine="0"
88
+ />
89
+ <Tool
90
+ Name="VCALinkTool"
91
+ />
92
+ <Tool
93
+ Name="VCXDCMakeTool"
94
+ />
95
+ <Tool
96
+ Name="VCBscMakeTool"
97
+ />
98
+ <Tool
99
+ Name="VCCodeSignTool"
100
+ />
101
+ <Tool
102
+ Name="VCPostBuildEventTool"
103
+ />
104
+ <DeploymentTool
105
+ ForceDirty="-1"
106
+ RemoteDirectory="%CSIDL_PROGRAM_FILES%\lsusb"
107
+ RegisterOutput="0"
108
+ AdditionalFiles=""
109
+ />
110
+ <DebuggerTool
111
+ />
112
+ </Configuration>
113
+ <Configuration
114
+ Name="Debug|STANDARDSDK_500 (MIPSII)"
115
+ OutputDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\dll"
116
+ IntermediateDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\dll\libusb-1.0"
117
+ ConfigurationType="2"
118
+ CharacterSet="2"
119
+ >
120
+ <Tool
121
+ Name="VCPreBuildEventTool"
122
+ />
123
+ <Tool
124
+ Name="VCCustomBuildTool"
125
+ />
126
+ <Tool
127
+ Name="VCXMLDataGeneratorTool"
128
+ />
129
+ <Tool
130
+ Name="VCWebServiceProxyGeneratorTool"
131
+ />
132
+ <Tool
133
+ Name="VCMIDLTool"
134
+ TargetEnvironment="1"
135
+ />
136
+ <Tool
137
+ Name="VCCLCompilerTool"
138
+ ExecutionBucket="7"
139
+ Optimization="0"
140
+ AdditionalIncludeDirectories=".;..\libusb"
141
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
142
+ MinimalRebuild="true"
143
+ RuntimeLibrary="3"
144
+ WarningLevel="3"
145
+ DebugInformationFormat="3"
146
+ />
147
+ <Tool
148
+ Name="VCManagedResourceCompilerTool"
149
+ />
150
+ <Tool
151
+ Name="VCResourceCompilerTool"
152
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
153
+ AdditionalIncludeDirectories="."
154
+ />
155
+ <Tool
156
+ Name="VCPreLinkEventTool"
157
+ />
158
+ <Tool
159
+ Name="VCLinkerTool"
160
+ OutputFile="$(OutDir)\libusb-1.0.dll"
161
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
162
+ GenerateDebugInformation="true"
163
+ SubSystem="9"
164
+ TargetMachine="0"
165
+ />
166
+ <Tool
167
+ Name="VCALinkTool"
168
+ />
169
+ <Tool
170
+ Name="VCXDCMakeTool"
171
+ />
172
+ <Tool
173
+ Name="VCBscMakeTool"
174
+ />
175
+ <Tool
176
+ Name="VCCodeSignTool"
177
+ />
178
+ <Tool
179
+ Name="VCPostBuildEventTool"
180
+ />
181
+ <DeploymentTool
182
+ ForceDirty="-1"
183
+ RemoteDirectory=""
184
+ RegisterOutput="0"
185
+ AdditionalFiles=""
186
+ />
187
+ <DebuggerTool
188
+ />
189
+ </Configuration>
190
+ <Configuration
191
+ Name="Debug|STANDARDSDK_500 (MIPSII_FP)"
192
+ OutputDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\dll"
193
+ IntermediateDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\dll\libusb-1.0"
194
+ ConfigurationType="2"
195
+ CharacterSet="2"
196
+ >
197
+ <Tool
198
+ Name="VCPreBuildEventTool"
199
+ />
200
+ <Tool
201
+ Name="VCCustomBuildTool"
202
+ />
203
+ <Tool
204
+ Name="VCXMLDataGeneratorTool"
205
+ />
206
+ <Tool
207
+ Name="VCWebServiceProxyGeneratorTool"
208
+ />
209
+ <Tool
210
+ Name="VCMIDLTool"
211
+ TargetEnvironment="1"
212
+ />
213
+ <Tool
214
+ Name="VCCLCompilerTool"
215
+ ExecutionBucket="7"
216
+ Optimization="0"
217
+ AdditionalIncludeDirectories=".;..\libusb"
218
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
219
+ MinimalRebuild="true"
220
+ RuntimeLibrary="3"
221
+ WarningLevel="3"
222
+ DebugInformationFormat="3"
223
+ />
224
+ <Tool
225
+ Name="VCManagedResourceCompilerTool"
226
+ />
227
+ <Tool
228
+ Name="VCResourceCompilerTool"
229
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
230
+ AdditionalIncludeDirectories="."
231
+ />
232
+ <Tool
233
+ Name="VCPreLinkEventTool"
234
+ />
235
+ <Tool
236
+ Name="VCLinkerTool"
237
+ OutputFile="$(OutDir)\libusb-1.0.dll"
238
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
239
+ GenerateDebugInformation="true"
240
+ SubSystem="9"
241
+ TargetMachine="0"
242
+ />
243
+ <Tool
244
+ Name="VCALinkTool"
245
+ />
246
+ <Tool
247
+ Name="VCXDCMakeTool"
248
+ />
249
+ <Tool
250
+ Name="VCBscMakeTool"
251
+ />
252
+ <Tool
253
+ Name="VCCodeSignTool"
254
+ />
255
+ <Tool
256
+ Name="VCPostBuildEventTool"
257
+ />
258
+ <DeploymentTool
259
+ ForceDirty="-1"
260
+ RemoteDirectory=""
261
+ RegisterOutput="0"
262
+ AdditionalFiles=""
263
+ />
264
+ <DebuggerTool
265
+ />
266
+ </Configuration>
267
+ <Configuration
268
+ Name="Debug|STANDARDSDK_500 (MIPSIV)"
269
+ OutputDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\dll"
270
+ IntermediateDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\dll\libusb-1.0"
271
+ ConfigurationType="2"
272
+ CharacterSet="2"
273
+ >
274
+ <Tool
275
+ Name="VCPreBuildEventTool"
276
+ />
277
+ <Tool
278
+ Name="VCCustomBuildTool"
279
+ />
280
+ <Tool
281
+ Name="VCXMLDataGeneratorTool"
282
+ />
283
+ <Tool
284
+ Name="VCWebServiceProxyGeneratorTool"
285
+ />
286
+ <Tool
287
+ Name="VCMIDLTool"
288
+ TargetEnvironment="1"
289
+ />
290
+ <Tool
291
+ Name="VCCLCompilerTool"
292
+ ExecutionBucket="7"
293
+ Optimization="0"
294
+ AdditionalIncludeDirectories=".;..\libusb"
295
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
296
+ MinimalRebuild="true"
297
+ RuntimeLibrary="3"
298
+ WarningLevel="3"
299
+ DebugInformationFormat="3"
300
+ />
301
+ <Tool
302
+ Name="VCManagedResourceCompilerTool"
303
+ />
304
+ <Tool
305
+ Name="VCResourceCompilerTool"
306
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
307
+ AdditionalIncludeDirectories="."
308
+ />
309
+ <Tool
310
+ Name="VCPreLinkEventTool"
311
+ />
312
+ <Tool
313
+ Name="VCLinkerTool"
314
+ OutputFile="$(OutDir)\libusb-1.0.dll"
315
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
316
+ GenerateDebugInformation="true"
317
+ SubSystem="9"
318
+ TargetMachine="0"
319
+ />
320
+ <Tool
321
+ Name="VCALinkTool"
322
+ />
323
+ <Tool
324
+ Name="VCXDCMakeTool"
325
+ />
326
+ <Tool
327
+ Name="VCBscMakeTool"
328
+ />
329
+ <Tool
330
+ Name="VCCodeSignTool"
331
+ />
332
+ <Tool
333
+ Name="VCPostBuildEventTool"
334
+ />
335
+ <DeploymentTool
336
+ ForceDirty="-1"
337
+ RemoteDirectory=""
338
+ RegisterOutput="0"
339
+ AdditionalFiles=""
340
+ />
341
+ <DebuggerTool
342
+ />
343
+ </Configuration>
344
+ <Configuration
345
+ Name="Debug|STANDARDSDK_500 (MIPSIV_FP)"
346
+ OutputDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\dll"
347
+ IntermediateDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\dll\libusb-1.0"
348
+ ConfigurationType="2"
349
+ CharacterSet="2"
350
+ >
351
+ <Tool
352
+ Name="VCPreBuildEventTool"
353
+ />
354
+ <Tool
355
+ Name="VCCustomBuildTool"
356
+ />
357
+ <Tool
358
+ Name="VCXMLDataGeneratorTool"
359
+ />
360
+ <Tool
361
+ Name="VCWebServiceProxyGeneratorTool"
362
+ />
363
+ <Tool
364
+ Name="VCMIDLTool"
365
+ TargetEnvironment="1"
366
+ />
367
+ <Tool
368
+ Name="VCCLCompilerTool"
369
+ ExecutionBucket="7"
370
+ Optimization="0"
371
+ AdditionalIncludeDirectories=".;..\libusb"
372
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
373
+ MinimalRebuild="true"
374
+ RuntimeLibrary="3"
375
+ WarningLevel="3"
376
+ DebugInformationFormat="3"
377
+ />
378
+ <Tool
379
+ Name="VCManagedResourceCompilerTool"
380
+ />
381
+ <Tool
382
+ Name="VCResourceCompilerTool"
383
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
384
+ AdditionalIncludeDirectories="."
385
+ />
386
+ <Tool
387
+ Name="VCPreLinkEventTool"
388
+ />
389
+ <Tool
390
+ Name="VCLinkerTool"
391
+ OutputFile="$(OutDir)\libusb-1.0.dll"
392
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
393
+ GenerateDebugInformation="true"
394
+ SubSystem="9"
395
+ TargetMachine="0"
396
+ />
397
+ <Tool
398
+ Name="VCALinkTool"
399
+ />
400
+ <Tool
401
+ Name="VCXDCMakeTool"
402
+ />
403
+ <Tool
404
+ Name="VCBscMakeTool"
405
+ />
406
+ <Tool
407
+ Name="VCCodeSignTool"
408
+ />
409
+ <Tool
410
+ Name="VCPostBuildEventTool"
411
+ />
412
+ <DeploymentTool
413
+ ForceDirty="-1"
414
+ RemoteDirectory=""
415
+ RegisterOutput="0"
416
+ AdditionalFiles=""
417
+ />
418
+ <DebuggerTool
419
+ />
420
+ </Configuration>
421
+ <Configuration
422
+ Name="Debug|STANDARDSDK_500 (SH4)"
423
+ OutputDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\dll"
424
+ IntermediateDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\dll\libusb-1.0"
425
+ ConfigurationType="2"
426
+ CharacterSet="2"
427
+ >
428
+ <Tool
429
+ Name="VCPreBuildEventTool"
430
+ />
431
+ <Tool
432
+ Name="VCCustomBuildTool"
433
+ />
434
+ <Tool
435
+ Name="VCXMLDataGeneratorTool"
436
+ />
437
+ <Tool
438
+ Name="VCWebServiceProxyGeneratorTool"
439
+ />
440
+ <Tool
441
+ Name="VCMIDLTool"
442
+ TargetEnvironment="1"
443
+ />
444
+ <Tool
445
+ Name="VCCLCompilerTool"
446
+ ExecutionBucket="7"
447
+ Optimization="0"
448
+ AdditionalIncludeDirectories=".;..\libusb"
449
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
450
+ MinimalRebuild="true"
451
+ RuntimeLibrary="3"
452
+ WarningLevel="3"
453
+ DebugInformationFormat="3"
454
+ />
455
+ <Tool
456
+ Name="VCManagedResourceCompilerTool"
457
+ />
458
+ <Tool
459
+ Name="VCResourceCompilerTool"
460
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
461
+ AdditionalIncludeDirectories="."
462
+ />
463
+ <Tool
464
+ Name="VCPreLinkEventTool"
465
+ />
466
+ <Tool
467
+ Name="VCLinkerTool"
468
+ OutputFile="$(OutDir)\libusb-1.0.dll"
469
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
470
+ GenerateDebugInformation="true"
471
+ SubSystem="9"
472
+ TargetMachine="0"
473
+ />
474
+ <Tool
475
+ Name="VCALinkTool"
476
+ />
477
+ <Tool
478
+ Name="VCXDCMakeTool"
479
+ />
480
+ <Tool
481
+ Name="VCBscMakeTool"
482
+ />
483
+ <Tool
484
+ Name="VCCodeSignTool"
485
+ />
486
+ <Tool
487
+ Name="VCPostBuildEventTool"
488
+ />
489
+ <DeploymentTool
490
+ ForceDirty="-1"
491
+ RemoteDirectory=""
492
+ RegisterOutput="0"
493
+ AdditionalFiles=""
494
+ />
495
+ <DebuggerTool
496
+ />
497
+ </Configuration>
498
+ <Configuration
499
+ Name="Debug|STANDARDSDK_500 (x86)"
500
+ OutputDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\dll"
501
+ IntermediateDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\dll\libusb-1.0"
502
+ ConfigurationType="2"
503
+ CharacterSet="2"
504
+ >
505
+ <Tool
506
+ Name="VCPreBuildEventTool"
507
+ />
508
+ <Tool
509
+ Name="VCCustomBuildTool"
510
+ />
511
+ <Tool
512
+ Name="VCXMLDataGeneratorTool"
513
+ />
514
+ <Tool
515
+ Name="VCWebServiceProxyGeneratorTool"
516
+ />
517
+ <Tool
518
+ Name="VCMIDLTool"
519
+ TargetEnvironment="1"
520
+ />
521
+ <Tool
522
+ Name="VCCLCompilerTool"
523
+ ExecutionBucket="7"
524
+ Optimization="0"
525
+ AdditionalIncludeDirectories=".;..\libusb"
526
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
527
+ MinimalRebuild="true"
528
+ RuntimeLibrary="3"
529
+ WarningLevel="3"
530
+ DebugInformationFormat="3"
531
+ />
532
+ <Tool
533
+ Name="VCManagedResourceCompilerTool"
534
+ />
535
+ <Tool
536
+ Name="VCResourceCompilerTool"
537
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
538
+ AdditionalIncludeDirectories="."
539
+ />
540
+ <Tool
541
+ Name="VCPreLinkEventTool"
542
+ />
543
+ <Tool
544
+ Name="VCLinkerTool"
545
+ OutputFile="$(OutDir)\libusb-1.0.dll"
546
+ IgnoreDefaultLibraryNames="oldnames.lib,libc.lib"
547
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
548
+ GenerateDebugInformation="true"
549
+ SubSystem="9"
550
+ TargetMachine="0"
551
+ />
552
+ <Tool
553
+ Name="VCALinkTool"
554
+ />
555
+ <Tool
556
+ Name="VCXDCMakeTool"
557
+ />
558
+ <Tool
559
+ Name="VCBscMakeTool"
560
+ />
561
+ <Tool
562
+ Name="VCCodeSignTool"
563
+ />
564
+ <Tool
565
+ Name="VCPostBuildEventTool"
566
+ />
567
+ <DeploymentTool
568
+ ForceDirty="-1"
569
+ RemoteDirectory=""
570
+ RegisterOutput="0"
571
+ AdditionalFiles=""
572
+ />
573
+ <DebuggerTool
574
+ />
575
+ </Configuration>
576
+ <Configuration
577
+ Name="Release|STANDARDSDK_500 (ARMV4I)"
578
+ OutputDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\dll"
579
+ IntermediateDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\dll\libusb-1.0"
580
+ ConfigurationType="2"
581
+ CharacterSet="2"
582
+ WholeProgramOptimization="1"
583
+ >
584
+ <Tool
585
+ Name="VCPreBuildEventTool"
586
+ />
587
+ <Tool
588
+ Name="VCCustomBuildTool"
589
+ />
590
+ <Tool
591
+ Name="VCXMLDataGeneratorTool"
592
+ />
593
+ <Tool
594
+ Name="VCWebServiceProxyGeneratorTool"
595
+ />
596
+ <Tool
597
+ Name="VCMIDLTool"
598
+ TargetEnvironment="1"
599
+ />
600
+ <Tool
601
+ Name="VCCLCompilerTool"
602
+ ExecutionBucket="7"
603
+ AdditionalIncludeDirectories=".;..\libusb"
604
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
605
+ MinimalRebuild="true"
606
+ RuntimeLibrary="2"
607
+ WarningLevel="3"
608
+ DebugInformationFormat="3"
609
+ />
610
+ <Tool
611
+ Name="VCManagedResourceCompilerTool"
612
+ />
613
+ <Tool
614
+ Name="VCResourceCompilerTool"
615
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
616
+ AdditionalIncludeDirectories="."
617
+ />
618
+ <Tool
619
+ Name="VCPreLinkEventTool"
620
+ />
621
+ <Tool
622
+ Name="VCLinkerTool"
623
+ OutputFile="$(OutDir)\libusb-1.0.dll"
624
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
625
+ GenerateDebugInformation="true"
626
+ SubSystem="9"
627
+ OptimizeReferences="2"
628
+ EnableCOMDATFolding="2"
629
+ TargetMachine="0"
630
+ />
631
+ <Tool
632
+ Name="VCALinkTool"
633
+ />
634
+ <Tool
635
+ Name="VCXDCMakeTool"
636
+ />
637
+ <Tool
638
+ Name="VCBscMakeTool"
639
+ />
640
+ <Tool
641
+ Name="VCCodeSignTool"
642
+ />
643
+ <Tool
644
+ Name="VCPostBuildEventTool"
645
+ />
646
+ <DeploymentTool
647
+ ForceDirty="-1"
648
+ RemoteDirectory=""
649
+ RegisterOutput="0"
650
+ AdditionalFiles=""
651
+ />
652
+ <DebuggerTool
653
+ />
654
+ </Configuration>
655
+ <Configuration
656
+ Name="Release|STANDARDSDK_500 (MIPSII)"
657
+ OutputDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\dll"
658
+ IntermediateDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\dll\libusb-1.0"
659
+ ConfigurationType="2"
660
+ CharacterSet="2"
661
+ WholeProgramOptimization="1"
662
+ >
663
+ <Tool
664
+ Name="VCPreBuildEventTool"
665
+ />
666
+ <Tool
667
+ Name="VCCustomBuildTool"
668
+ />
669
+ <Tool
670
+ Name="VCXMLDataGeneratorTool"
671
+ />
672
+ <Tool
673
+ Name="VCWebServiceProxyGeneratorTool"
674
+ />
675
+ <Tool
676
+ Name="VCMIDLTool"
677
+ TargetEnvironment="1"
678
+ />
679
+ <Tool
680
+ Name="VCCLCompilerTool"
681
+ ExecutionBucket="7"
682
+ AdditionalIncludeDirectories=".;..\libusb"
683
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
684
+ MinimalRebuild="true"
685
+ RuntimeLibrary="2"
686
+ WarningLevel="3"
687
+ DebugInformationFormat="3"
688
+ />
689
+ <Tool
690
+ Name="VCManagedResourceCompilerTool"
691
+ />
692
+ <Tool
693
+ Name="VCResourceCompilerTool"
694
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
695
+ AdditionalIncludeDirectories="."
696
+ />
697
+ <Tool
698
+ Name="VCPreLinkEventTool"
699
+ />
700
+ <Tool
701
+ Name="VCLinkerTool"
702
+ OutputFile="$(OutDir)\libusb-1.0.dll"
703
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
704
+ GenerateDebugInformation="true"
705
+ SubSystem="9"
706
+ OptimizeReferences="2"
707
+ EnableCOMDATFolding="2"
708
+ TargetMachine="0"
709
+ />
710
+ <Tool
711
+ Name="VCALinkTool"
712
+ />
713
+ <Tool
714
+ Name="VCXDCMakeTool"
715
+ />
716
+ <Tool
717
+ Name="VCBscMakeTool"
718
+ />
719
+ <Tool
720
+ Name="VCCodeSignTool"
721
+ />
722
+ <Tool
723
+ Name="VCPostBuildEventTool"
724
+ />
725
+ <DeploymentTool
726
+ ForceDirty="-1"
727
+ RemoteDirectory=""
728
+ RegisterOutput="0"
729
+ AdditionalFiles=""
730
+ />
731
+ <DebuggerTool
732
+ />
733
+ </Configuration>
734
+ <Configuration
735
+ Name="Release|STANDARDSDK_500 (MIPSII_FP)"
736
+ OutputDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\dll"
737
+ IntermediateDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\dll\libusb-1.0"
738
+ ConfigurationType="2"
739
+ CharacterSet="2"
740
+ WholeProgramOptimization="1"
741
+ >
742
+ <Tool
743
+ Name="VCPreBuildEventTool"
744
+ />
745
+ <Tool
746
+ Name="VCCustomBuildTool"
747
+ />
748
+ <Tool
749
+ Name="VCXMLDataGeneratorTool"
750
+ />
751
+ <Tool
752
+ Name="VCWebServiceProxyGeneratorTool"
753
+ />
754
+ <Tool
755
+ Name="VCMIDLTool"
756
+ TargetEnvironment="1"
757
+ />
758
+ <Tool
759
+ Name="VCCLCompilerTool"
760
+ ExecutionBucket="7"
761
+ AdditionalIncludeDirectories=".;..\libusb"
762
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
763
+ MinimalRebuild="true"
764
+ RuntimeLibrary="2"
765
+ WarningLevel="3"
766
+ DebugInformationFormat="3"
767
+ />
768
+ <Tool
769
+ Name="VCManagedResourceCompilerTool"
770
+ />
771
+ <Tool
772
+ Name="VCResourceCompilerTool"
773
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
774
+ AdditionalIncludeDirectories="."
775
+ />
776
+ <Tool
777
+ Name="VCPreLinkEventTool"
778
+ />
779
+ <Tool
780
+ Name="VCLinkerTool"
781
+ OutputFile="$(OutDir)\libusb-1.0.dll"
782
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
783
+ GenerateDebugInformation="true"
784
+ SubSystem="9"
785
+ OptimizeReferences="2"
786
+ EnableCOMDATFolding="2"
787
+ TargetMachine="0"
788
+ />
789
+ <Tool
790
+ Name="VCALinkTool"
791
+ />
792
+ <Tool
793
+ Name="VCXDCMakeTool"
794
+ />
795
+ <Tool
796
+ Name="VCBscMakeTool"
797
+ />
798
+ <Tool
799
+ Name="VCCodeSignTool"
800
+ />
801
+ <Tool
802
+ Name="VCPostBuildEventTool"
803
+ />
804
+ <DeploymentTool
805
+ ForceDirty="-1"
806
+ RemoteDirectory=""
807
+ RegisterOutput="0"
808
+ AdditionalFiles=""
809
+ />
810
+ <DebuggerTool
811
+ />
812
+ </Configuration>
813
+ <Configuration
814
+ Name="Release|STANDARDSDK_500 (MIPSIV)"
815
+ OutputDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\dll"
816
+ IntermediateDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\dll\libusb-1.0"
817
+ ConfigurationType="2"
818
+ CharacterSet="2"
819
+ WholeProgramOptimization="1"
820
+ >
821
+ <Tool
822
+ Name="VCPreBuildEventTool"
823
+ />
824
+ <Tool
825
+ Name="VCCustomBuildTool"
826
+ />
827
+ <Tool
828
+ Name="VCXMLDataGeneratorTool"
829
+ />
830
+ <Tool
831
+ Name="VCWebServiceProxyGeneratorTool"
832
+ />
833
+ <Tool
834
+ Name="VCMIDLTool"
835
+ TargetEnvironment="1"
836
+ />
837
+ <Tool
838
+ Name="VCCLCompilerTool"
839
+ ExecutionBucket="7"
840
+ AdditionalIncludeDirectories=".;..\libusb"
841
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
842
+ MinimalRebuild="true"
843
+ RuntimeLibrary="2"
844
+ WarningLevel="3"
845
+ DebugInformationFormat="3"
846
+ />
847
+ <Tool
848
+ Name="VCManagedResourceCompilerTool"
849
+ />
850
+ <Tool
851
+ Name="VCResourceCompilerTool"
852
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
853
+ AdditionalIncludeDirectories="."
854
+ />
855
+ <Tool
856
+ Name="VCPreLinkEventTool"
857
+ />
858
+ <Tool
859
+ Name="VCLinkerTool"
860
+ OutputFile="$(OutDir)\libusb-1.0.dll"
861
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
862
+ GenerateDebugInformation="true"
863
+ SubSystem="9"
864
+ OptimizeReferences="2"
865
+ EnableCOMDATFolding="2"
866
+ TargetMachine="0"
867
+ />
868
+ <Tool
869
+ Name="VCALinkTool"
870
+ />
871
+ <Tool
872
+ Name="VCXDCMakeTool"
873
+ />
874
+ <Tool
875
+ Name="VCBscMakeTool"
876
+ />
877
+ <Tool
878
+ Name="VCCodeSignTool"
879
+ />
880
+ <Tool
881
+ Name="VCPostBuildEventTool"
882
+ />
883
+ <DeploymentTool
884
+ ForceDirty="-1"
885
+ RemoteDirectory=""
886
+ RegisterOutput="0"
887
+ AdditionalFiles=""
888
+ />
889
+ <DebuggerTool
890
+ />
891
+ </Configuration>
892
+ <Configuration
893
+ Name="Release|STANDARDSDK_500 (MIPSIV_FP)"
894
+ OutputDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\dll"
895
+ IntermediateDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\dll\libusb-1.0"
896
+ ConfigurationType="2"
897
+ CharacterSet="2"
898
+ WholeProgramOptimization="1"
899
+ >
900
+ <Tool
901
+ Name="VCPreBuildEventTool"
902
+ />
903
+ <Tool
904
+ Name="VCCustomBuildTool"
905
+ />
906
+ <Tool
907
+ Name="VCXMLDataGeneratorTool"
908
+ />
909
+ <Tool
910
+ Name="VCWebServiceProxyGeneratorTool"
911
+ />
912
+ <Tool
913
+ Name="VCMIDLTool"
914
+ TargetEnvironment="1"
915
+ />
916
+ <Tool
917
+ Name="VCCLCompilerTool"
918
+ ExecutionBucket="7"
919
+ AdditionalIncludeDirectories=".;..\libusb"
920
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
921
+ MinimalRebuild="true"
922
+ RuntimeLibrary="2"
923
+ WarningLevel="3"
924
+ DebugInformationFormat="3"
925
+ />
926
+ <Tool
927
+ Name="VCManagedResourceCompilerTool"
928
+ />
929
+ <Tool
930
+ Name="VCResourceCompilerTool"
931
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
932
+ AdditionalIncludeDirectories="."
933
+ />
934
+ <Tool
935
+ Name="VCPreLinkEventTool"
936
+ />
937
+ <Tool
938
+ Name="VCLinkerTool"
939
+ OutputFile="$(OutDir)\libusb-1.0.dll"
940
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
941
+ GenerateDebugInformation="true"
942
+ SubSystem="9"
943
+ OptimizeReferences="2"
944
+ EnableCOMDATFolding="2"
945
+ TargetMachine="0"
946
+ />
947
+ <Tool
948
+ Name="VCALinkTool"
949
+ />
950
+ <Tool
951
+ Name="VCXDCMakeTool"
952
+ />
953
+ <Tool
954
+ Name="VCBscMakeTool"
955
+ />
956
+ <Tool
957
+ Name="VCCodeSignTool"
958
+ />
959
+ <Tool
960
+ Name="VCPostBuildEventTool"
961
+ />
962
+ <DeploymentTool
963
+ ForceDirty="-1"
964
+ RemoteDirectory=""
965
+ RegisterOutput="0"
966
+ AdditionalFiles=""
967
+ />
968
+ <DebuggerTool
969
+ />
970
+ </Configuration>
971
+ <Configuration
972
+ Name="Release|STANDARDSDK_500 (SH4)"
973
+ OutputDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\dll"
974
+ IntermediateDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\dll\libusb-1.0"
975
+ ConfigurationType="2"
976
+ CharacterSet="2"
977
+ WholeProgramOptimization="1"
978
+ >
979
+ <Tool
980
+ Name="VCPreBuildEventTool"
981
+ />
982
+ <Tool
983
+ Name="VCCustomBuildTool"
984
+ />
985
+ <Tool
986
+ Name="VCXMLDataGeneratorTool"
987
+ />
988
+ <Tool
989
+ Name="VCWebServiceProxyGeneratorTool"
990
+ />
991
+ <Tool
992
+ Name="VCMIDLTool"
993
+ TargetEnvironment="1"
994
+ />
995
+ <Tool
996
+ Name="VCCLCompilerTool"
997
+ ExecutionBucket="7"
998
+ AdditionalIncludeDirectories=".;..\libusb"
999
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
1000
+ MinimalRebuild="true"
1001
+ RuntimeLibrary="2"
1002
+ WarningLevel="3"
1003
+ DebugInformationFormat="3"
1004
+ />
1005
+ <Tool
1006
+ Name="VCManagedResourceCompilerTool"
1007
+ />
1008
+ <Tool
1009
+ Name="VCResourceCompilerTool"
1010
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
1011
+ AdditionalIncludeDirectories="."
1012
+ />
1013
+ <Tool
1014
+ Name="VCPreLinkEventTool"
1015
+ />
1016
+ <Tool
1017
+ Name="VCLinkerTool"
1018
+ OutputFile="$(OutDir)\libusb-1.0.dll"
1019
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
1020
+ GenerateDebugInformation="true"
1021
+ SubSystem="9"
1022
+ OptimizeReferences="2"
1023
+ EnableCOMDATFolding="2"
1024
+ TargetMachine="0"
1025
+ />
1026
+ <Tool
1027
+ Name="VCALinkTool"
1028
+ />
1029
+ <Tool
1030
+ Name="VCXDCMakeTool"
1031
+ />
1032
+ <Tool
1033
+ Name="VCBscMakeTool"
1034
+ />
1035
+ <Tool
1036
+ Name="VCCodeSignTool"
1037
+ />
1038
+ <Tool
1039
+ Name="VCPostBuildEventTool"
1040
+ />
1041
+ <DeploymentTool
1042
+ ForceDirty="-1"
1043
+ RemoteDirectory=""
1044
+ RegisterOutput="0"
1045
+ AdditionalFiles=""
1046
+ />
1047
+ <DebuggerTool
1048
+ />
1049
+ </Configuration>
1050
+ <Configuration
1051
+ Name="Release|STANDARDSDK_500 (x86)"
1052
+ OutputDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\dll"
1053
+ IntermediateDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\dll\libusb-1.0"
1054
+ ConfigurationType="2"
1055
+ CharacterSet="2"
1056
+ WholeProgramOptimization="1"
1057
+ >
1058
+ <Tool
1059
+ Name="VCPreBuildEventTool"
1060
+ />
1061
+ <Tool
1062
+ Name="VCCustomBuildTool"
1063
+ />
1064
+ <Tool
1065
+ Name="VCXMLDataGeneratorTool"
1066
+ />
1067
+ <Tool
1068
+ Name="VCWebServiceProxyGeneratorTool"
1069
+ />
1070
+ <Tool
1071
+ Name="VCMIDLTool"
1072
+ TargetEnvironment="1"
1073
+ />
1074
+ <Tool
1075
+ Name="VCCLCompilerTool"
1076
+ ExecutionBucket="7"
1077
+ AdditionalIncludeDirectories=".;..\libusb"
1078
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
1079
+ MinimalRebuild="true"
1080
+ RuntimeLibrary="2"
1081
+ WarningLevel="3"
1082
+ DebugInformationFormat="3"
1083
+ />
1084
+ <Tool
1085
+ Name="VCManagedResourceCompilerTool"
1086
+ />
1087
+ <Tool
1088
+ Name="VCResourceCompilerTool"
1089
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
1090
+ AdditionalIncludeDirectories="."
1091
+ />
1092
+ <Tool
1093
+ Name="VCPreLinkEventTool"
1094
+ />
1095
+ <Tool
1096
+ Name="VCLinkerTool"
1097
+ OutputFile="$(OutDir)\libusb-1.0.dll"
1098
+ IgnoreDefaultLibraryNames="oldnames.lib,libc.lib"
1099
+ ModuleDefinitionFile="../libusb/libusb-1.0.def"
1100
+ GenerateDebugInformation="true"
1101
+ SubSystem="9"
1102
+ OptimizeReferences="2"
1103
+ EnableCOMDATFolding="2"
1104
+ TargetMachine="0"
1105
+ />
1106
+ <Tool
1107
+ Name="VCALinkTool"
1108
+ />
1109
+ <Tool
1110
+ Name="VCXDCMakeTool"
1111
+ />
1112
+ <Tool
1113
+ Name="VCBscMakeTool"
1114
+ />
1115
+ <Tool
1116
+ Name="VCCodeSignTool"
1117
+ />
1118
+ <Tool
1119
+ Name="VCPostBuildEventTool"
1120
+ />
1121
+ <DeploymentTool
1122
+ ForceDirty="-1"
1123
+ RemoteDirectory=""
1124
+ RegisterOutput="0"
1125
+ AdditionalFiles=""
1126
+ />
1127
+ <DebuggerTool
1128
+ />
1129
+ </Configuration>
1130
+ </Configurations>
1131
+ <References>
1132
+ </References>
1133
+ <Files>
1134
+ <Filter
1135
+ Name="Source Files"
1136
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
1137
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
1138
+ >
1139
+ <File
1140
+ RelativePath="..\libusb\core.c"
1141
+ >
1142
+ </File>
1143
+ <File
1144
+ RelativePath="..\libusb\descriptor.c"
1145
+ >
1146
+ </File>
1147
+ <File
1148
+ RelativePath="..\libusb\hotplug.c"
1149
+ >
1150
+ </File>
1151
+ <File
1152
+ RelativePath="..\libusb\io.c"
1153
+ >
1154
+ </File>
1155
+ <File
1156
+ RelativePath="missing.c"
1157
+ >
1158
+ </File>
1159
+ <File
1160
+ RelativePath="..\libusb\os\poll_windows.c"
1161
+ >
1162
+ </File>
1163
+ <File
1164
+ RelativePath="..\libusb\strerror.c"
1165
+ >
1166
+ </File>
1167
+ <File
1168
+ RelativePath="..\libusb\sync.c"
1169
+ >
1170
+ </File>
1171
+ <File
1172
+ RelativePath="..\libusb\os\threads_windows.c"
1173
+ >
1174
+ </File>
1175
+ <File
1176
+ RelativePath="..\libusb\os\wince_usb.c"
1177
+ >
1178
+ </File>
1179
+ </Filter>
1180
+ <Filter
1181
+ Name="Header Files"
1182
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
1183
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
1184
+ >
1185
+ <File
1186
+ RelativePath="config.h"
1187
+ >
1188
+ </File>
1189
+ <File
1190
+ RelativePath="errno.h"
1191
+ >
1192
+ </File>
1193
+ <File
1194
+ RelativePath="..\libusb\libusb.h"
1195
+ >
1196
+ </File>
1197
+ <File
1198
+ RelativePath="..\libusb\libusbi.h"
1199
+ >
1200
+ </File>
1201
+ <File
1202
+ RelativePath="missing.h"
1203
+ >
1204
+ </File>
1205
+ <File
1206
+ RelativePath="..\libusb\os\poll_windows.h"
1207
+ >
1208
+ </File>
1209
+ <File
1210
+ RelativePath="..\libusb\os\threads_windows.h"
1211
+ >
1212
+ </File>
1213
+ <File
1214
+ RelativePath="..\libusb\version.h"
1215
+ >
1216
+ </File>
1217
+ <File
1218
+ RelativePath="..\libusb\os\wince_usb.h"
1219
+ >
1220
+ </File>
1221
+ <File
1222
+ RelativePath="..\libusb\os\windows_common.h"
1223
+ >
1224
+ </File>
1225
+ </Filter>
1226
+ <Filter
1227
+ Name="Resource Files"
1228
+ Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
1229
+ UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
1230
+ >
1231
+ <File
1232
+ RelativePath="..\libusb\libusb-1.0.def"
1233
+ >
1234
+ </File>
1235
+ <File
1236
+ RelativePath="..\libusb\libusb-1.0.rc"
1237
+ >
1238
+ </File>
1239
+ </Filter>
1240
+ </Files>
1241
+ <Globals>
1242
+ </Globals>
1243
+ </VisualStudioProject>