usb 2.1.2 → 2.3.0

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 (288) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +20 -2
  3. package/dist/index.d.ts +2 -1
  4. package/dist/index.js +3 -1
  5. package/dist/index.js.map +1 -1
  6. package/dist/usb/bindings.d.ts +4 -0
  7. package/dist/usb/device.js +5 -0
  8. package/dist/usb/device.js.map +1 -1
  9. package/dist/usb/index.js +7 -16
  10. package/dist/usb/index.js.map +1 -1
  11. package/dist/webusb/webusb-device.d.ts +2 -1
  12. package/dist/webusb/webusb-device.js +21 -14
  13. package/dist/webusb/webusb-device.js.map +1 -1
  14. package/libusb/.gitattributes +2 -6
  15. package/libusb/.private/appveyor_build.sh +22 -0
  16. package/libusb/.private/bm.sh +1 -1
  17. package/libusb/.private/ci-build.sh +67 -0
  18. package/libusb/.private/ci-container-build.sh +70 -0
  19. package/libusb/.private/post-rewrite.sh +5 -1
  20. package/libusb/.private/pre-commit.sh +5 -1
  21. package/libusb/.private/wbs.txt +4 -19
  22. package/libusb/.travis.yml +32 -23
  23. package/libusb/AUTHORS +86 -3
  24. package/libusb/ChangeLog +54 -3
  25. package/libusb/INSTALL_WIN.txt +22 -44
  26. package/libusb/Makefile.am +32 -10
  27. package/libusb/{README.md → README} +2 -2
  28. package/libusb/README.git +3 -3
  29. package/libusb/Xcode/common.xcconfig +23 -19
  30. package/libusb/Xcode/config.h +25 -13
  31. package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +511 -109
  32. package/libusb/android/README +90 -54
  33. package/libusb/android/config.h +23 -43
  34. package/libusb/android/examples/unrooted_android.c +300 -0
  35. package/libusb/android/examples/unrooted_android.h +36 -0
  36. package/libusb/android/jni/Android.mk +1 -1
  37. package/libusb/android/jni/Application.mk +16 -0
  38. package/libusb/android/jni/examples.mk +63 -29
  39. package/libusb/android/jni/libusb.mk +14 -8
  40. package/libusb/android/jni/tests.mk +13 -24
  41. package/libusb/appveyor.yml +73 -30
  42. package/libusb/autogen.sh +5 -3
  43. package/libusb/bootstrap.sh +6 -2
  44. package/libusb/configure.ac +314 -227
  45. package/libusb/doc/Makefile.in +22 -0
  46. package/libusb/doc/doxygen.cfg.in +460 -223
  47. package/libusb/examples/Makefile.am +6 -13
  48. package/libusb/examples/dpfp.c +276 -73
  49. package/libusb/examples/ezusb.c +18 -8
  50. package/libusb/examples/ezusb.h +6 -17
  51. package/libusb/examples/fxload.c +4 -5
  52. package/libusb/examples/hotplugtest.c +1 -1
  53. package/libusb/examples/sam3u_benchmark.c +59 -24
  54. package/libusb/examples/testlibusb.c +138 -104
  55. package/libusb/examples/xusb.c +26 -22
  56. package/libusb/libusb/Makefile.am +57 -70
  57. package/libusb/libusb/Makefile.am.extra +26 -0
  58. package/libusb/libusb/core.c +432 -423
  59. package/libusb/libusb/descriptor.c +365 -419
  60. package/libusb/libusb/hotplug.c +200 -104
  61. package/libusb/libusb/io.c +522 -535
  62. package/libusb/libusb/libusb-1.0.def +7 -3
  63. package/libusb/libusb/libusb-1.0.rc +1 -9
  64. package/libusb/libusb/libusb.h +302 -226
  65. package/libusb/libusb/libusbi.h +607 -316
  66. package/libusb/libusb/os/darwin_usb.c +703 -329
  67. package/libusb/libusb/os/darwin_usb.h +39 -15
  68. package/libusb/libusb/os/events_posix.c +300 -0
  69. package/libusb/libusb/os/events_posix.h +59 -0
  70. package/libusb/libusb/os/events_windows.c +214 -0
  71. package/libusb/{msvc/missing.h → libusb/os/events_windows.h} +25 -11
  72. package/libusb/libusb/os/haiku_pollfs.cpp +14 -9
  73. package/libusb/libusb/os/haiku_usb.h +12 -12
  74. package/libusb/libusb/os/haiku_usb_backend.cpp +36 -37
  75. package/libusb/libusb/os/haiku_usb_raw.cpp +80 -116
  76. package/libusb/libusb/os/linux_netlink.c +55 -63
  77. package/libusb/libusb/os/linux_udev.c +61 -69
  78. package/libusb/libusb/os/linux_usbfs.c +926 -1015
  79. package/libusb/libusb/os/linux_usbfs.h +74 -57
  80. package/libusb/libusb/os/netbsd_usb.c +103 -168
  81. package/libusb/libusb/os/null_usb.c +111 -0
  82. package/libusb/libusb/os/openbsd_usb.c +71 -120
  83. package/libusb/libusb/os/sunos_usb.c +289 -375
  84. package/libusb/libusb/os/sunos_usb.h +0 -1
  85. package/libusb/libusb/os/threads_posix.c +81 -32
  86. package/libusb/libusb/os/threads_posix.h +19 -23
  87. package/libusb/libusb/os/threads_windows.c +9 -95
  88. package/libusb/libusb/os/threads_windows.h +33 -31
  89. package/libusb/libusb/os/windows_common.c +915 -0
  90. package/libusb/libusb/os/windows_common.h +330 -42
  91. package/libusb/libusb/os/windows_usbdk.c +161 -267
  92. package/libusb/libusb/os/windows_usbdk.h +5 -2
  93. package/libusb/libusb/os/windows_winusb.c +1355 -1192
  94. package/libusb/libusb/os/windows_winusb.h +167 -167
  95. package/libusb/libusb/strerror.c +20 -30
  96. package/libusb/libusb/sync.c +20 -21
  97. package/libusb/libusb/version.h +1 -1
  98. package/libusb/libusb/version_nano.h +1 -1
  99. package/libusb/msvc/.gitattributes +3 -0
  100. package/libusb/msvc/config.h +27 -20
  101. package/libusb/msvc/{hotplugtest_2012.vcxproj → dpfp_2013.vcxproj} +14 -10
  102. package/libusb/msvc/dpfp_2013.vcxproj.filters +26 -0
  103. package/libusb/msvc/{listdevs_2010.vcxproj → dpfp_2015.vcxproj} +14 -9
  104. package/libusb/msvc/dpfp_2015.vcxproj.filters +26 -0
  105. package/libusb/msvc/dpfp_2017.vcxproj +106 -0
  106. package/libusb/msvc/dpfp_2017.vcxproj.filters +26 -0
  107. package/libusb/msvc/dpfp_2019.vcxproj +106 -0
  108. package/libusb/msvc/dpfp_2019.vcxproj.filters +26 -0
  109. package/libusb/msvc/dpfp_threaded_2013.vcxproj +87 -0
  110. package/libusb/msvc/dpfp_threaded_2013.vcxproj.filters +26 -0
  111. package/libusb/msvc/dpfp_threaded_2015.vcxproj +87 -0
  112. package/libusb/msvc/dpfp_threaded_2015.vcxproj.filters +26 -0
  113. package/libusb/msvc/dpfp_threaded_2017.vcxproj +106 -0
  114. package/libusb/msvc/dpfp_threaded_2017.vcxproj.filters +26 -0
  115. package/libusb/msvc/{fxload_2012.vcxproj → dpfp_threaded_2019.vcxproj} +32 -17
  116. package/libusb/msvc/dpfp_threaded_2019.vcxproj.filters +26 -0
  117. package/libusb/msvc/fxload_2013.vcxproj +6 -3
  118. package/libusb/msvc/fxload_2013.vcxproj.filters +35 -0
  119. package/libusb/msvc/fxload_2015.vcxproj +6 -3
  120. package/libusb/msvc/fxload_2015.vcxproj.filters +35 -0
  121. package/libusb/msvc/fxload_2017.vcxproj +6 -7
  122. package/libusb/msvc/fxload_2017.vcxproj.filters +35 -0
  123. package/libusb/msvc/{fxload_2010.vcxproj → fxload_2019.vcxproj} +29 -6
  124. package/libusb/msvc/fxload_2019.vcxproj.filters +35 -0
  125. package/libusb/{examples → msvc}/getopt/getopt.c +0 -0
  126. package/libusb/{examples → msvc}/getopt/getopt.h +0 -0
  127. package/libusb/{examples → msvc}/getopt/getopt1.c +0 -0
  128. package/libusb/msvc/getopt_2013.vcxproj +4 -5
  129. package/libusb/msvc/getopt_2013.vcxproj.filters +26 -0
  130. package/libusb/msvc/getopt_2015.vcxproj +4 -4
  131. package/libusb/msvc/getopt_2015.vcxproj.filters +26 -0
  132. package/libusb/msvc/getopt_2017.vcxproj +4 -10
  133. package/libusb/msvc/getopt_2017.vcxproj.filters +26 -0
  134. package/libusb/msvc/{getopt_2012.vcxproj → getopt_2019.vcxproj} +25 -6
  135. package/libusb/msvc/getopt_2019.vcxproj.filters +26 -0
  136. package/libusb/msvc/hotplugtest_2013.vcxproj +6 -3
  137. package/libusb/msvc/hotplugtest_2013.vcxproj.filters +23 -0
  138. package/libusb/msvc/hotplugtest_2015.vcxproj +6 -3
  139. package/libusb/msvc/hotplugtest_2015.vcxproj.filters +23 -0
  140. package/libusb/msvc/hotplugtest_2017.vcxproj +6 -7
  141. package/libusb/msvc/hotplugtest_2017.vcxproj.filters +23 -0
  142. package/libusb/msvc/hotplugtest_2019.vcxproj +105 -0
  143. package/libusb/msvc/hotplugtest_2019.vcxproj.filters +23 -0
  144. package/libusb/msvc/libusb_2013.sln +50 -20
  145. package/libusb/msvc/libusb_2015.sln +51 -21
  146. package/libusb/msvc/libusb_2017.sln +90 -36
  147. package/libusb/msvc/libusb_2019.sln +240 -0
  148. package/libusb/msvc/libusb_dll_2013.vcxproj +6 -9
  149. package/libusb/msvc/libusb_dll_2013.vcxproj.filters +94 -0
  150. package/libusb/msvc/libusb_dll_2015.vcxproj +6 -8
  151. package/libusb/msvc/libusb_dll_2015.vcxproj.filters +94 -0
  152. package/libusb/msvc/libusb_dll_2017.vcxproj +6 -16
  153. package/libusb/msvc/libusb_dll_2017.vcxproj.filters +94 -0
  154. package/libusb/msvc/{libusb_dll_2010.vcxproj → libusb_dll_2019.vcxproj} +27 -9
  155. package/libusb/msvc/libusb_dll_2019.vcxproj.filters +94 -0
  156. package/libusb/msvc/libusb_static_2013.vcxproj +5 -9
  157. package/libusb/msvc/libusb_static_2013.vcxproj.filters +80 -0
  158. package/libusb/msvc/libusb_static_2015.vcxproj +5 -8
  159. package/libusb/msvc/libusb_static_2015.vcxproj.filters +80 -0
  160. package/libusb/msvc/libusb_static_2017.vcxproj +5 -8
  161. package/libusb/msvc/libusb_static_2017.vcxproj.filters +80 -0
  162. package/libusb/msvc/{libusb_static_2010.vcxproj → libusb_static_2019.vcxproj} +26 -9
  163. package/libusb/msvc/libusb_static_2019.vcxproj.filters +80 -0
  164. package/libusb/msvc/listdevs_2013.vcxproj +6 -3
  165. package/libusb/msvc/listdevs_2013.vcxproj.filters +23 -0
  166. package/libusb/msvc/listdevs_2015.vcxproj +6 -3
  167. package/libusb/msvc/listdevs_2015.vcxproj.filters +23 -0
  168. package/libusb/msvc/listdevs_2017.vcxproj +6 -7
  169. package/libusb/msvc/listdevs_2017.vcxproj.filters +23 -0
  170. package/libusb/msvc/listdevs_2019.vcxproj +105 -0
  171. package/libusb/msvc/listdevs_2019.vcxproj.filters +23 -0
  172. package/libusb/msvc/{listdevs_2012.vcxproj → sam3u_benchmark_2013.vcxproj} +13 -9
  173. package/libusb/msvc/sam3u_benchmark_2013.vcxproj.filters +26 -0
  174. package/libusb/msvc/{hotplugtest_2010.vcxproj → sam3u_benchmark_2015.vcxproj} +13 -8
  175. package/libusb/msvc/sam3u_benchmark_2015.vcxproj.filters +26 -0
  176. package/libusb/msvc/sam3u_benchmark_2017.vcxproj +106 -0
  177. package/libusb/msvc/sam3u_benchmark_2017.vcxproj.filters +26 -0
  178. package/libusb/msvc/sam3u_benchmark_2019.vcxproj +106 -0
  179. package/libusb/msvc/sam3u_benchmark_2019.vcxproj.filters +26 -0
  180. package/libusb/msvc/stress_2013.vcxproj +4 -2
  181. package/libusb/msvc/stress_2013.vcxproj.filters +32 -0
  182. package/libusb/msvc/stress_2015.vcxproj +4 -2
  183. package/libusb/msvc/stress_2015.vcxproj.filters +32 -0
  184. package/libusb/msvc/stress_2017.vcxproj +4 -6
  185. package/libusb/msvc/stress_2017.vcxproj.filters +32 -0
  186. package/libusb/msvc/{stress_2010.vcxproj → stress_2019.vcxproj} +26 -4
  187. package/libusb/msvc/stress_2019.vcxproj.filters +32 -0
  188. package/libusb/msvc/testlibusb_2013.vcxproj +6 -3
  189. package/libusb/msvc/testlibusb_2013.vcxproj.filters +23 -0
  190. package/libusb/msvc/testlibusb_2015.vcxproj +6 -3
  191. package/libusb/msvc/testlibusb_2015.vcxproj.filters +23 -0
  192. package/libusb/msvc/testlibusb_2017.vcxproj +6 -7
  193. package/libusb/msvc/testlibusb_2017.vcxproj.filters +23 -0
  194. package/libusb/msvc/{testlibusb_2010.vcxproj → testlibusb_2019.vcxproj} +28 -5
  195. package/libusb/msvc/testlibusb_2019.vcxproj.filters +23 -0
  196. package/libusb/msvc/xusb_2013.vcxproj +6 -3
  197. package/libusb/msvc/xusb_2013.vcxproj.filters +23 -0
  198. package/libusb/msvc/xusb_2015.vcxproj +6 -3
  199. package/libusb/msvc/xusb_2015.vcxproj.filters +23 -0
  200. package/libusb/msvc/xusb_2017.vcxproj +6 -7
  201. package/libusb/msvc/xusb_2017.vcxproj.filters +23 -0
  202. package/libusb/msvc/{xusb_2010.vcxproj → xusb_2019.vcxproj} +28 -5
  203. package/libusb/msvc/xusb_2019.vcxproj.filters +23 -0
  204. package/libusb/tests/Makefile.am +13 -1
  205. package/libusb/tests/libusb_testlib.h +12 -43
  206. package/libusb/tests/stress.c +59 -50
  207. package/libusb/tests/testlib.c +78 -171
  208. package/libusb/tests/umockdev.c +1175 -0
  209. package/libusb.gypi +10 -11
  210. package/package.json +2 -2
  211. package/prebuilds/android-arm/node.napi.armv7.node +0 -0
  212. package/prebuilds/android-arm64/node.napi.armv8.node +0 -0
  213. package/prebuilds/darwin-x64+arm64/node.napi.node +0 -0
  214. package/prebuilds/linux-arm/node.napi.armv6.node +0 -0
  215. package/prebuilds/linux-arm/node.napi.armv7.node +0 -0
  216. package/prebuilds/linux-arm64/node.napi.armv8.node +0 -0
  217. package/prebuilds/linux-ia32/node.napi.node +0 -0
  218. package/prebuilds/linux-x64/node.napi.glibc.node +0 -0
  219. package/prebuilds/linux-x64/node.napi.musl.node +0 -0
  220. package/prebuilds/win32-ia32/node.napi.node +0 -0
  221. package/prebuilds/win32-x64/node.napi.node +0 -0
  222. package/src/device.cc +12 -7
  223. package/src/node_usb.cc +10 -0
  224. package/test/usb.coffee +6 -0
  225. package/tsc/index.ts +2 -0
  226. package/tsc/usb/bindings.ts +5 -0
  227. package/tsc/usb/device.ts +6 -0
  228. package/tsc/usb/index.ts +5 -8
  229. package/tsc/webusb/webusb-device.ts +12 -8
  230. package/libusb/.private/bd.cmd +0 -89
  231. package/libusb/.private/bwince.cmd +0 -57
  232. package/libusb/.private/wbs_wince.txt +0 -42
  233. package/libusb/Brewfile +0 -4
  234. package/libusb/appveyor_cygwin.bat +0 -11
  235. package/libusb/appveyor_minGW.bat +0 -19
  236. package/libusb/doc/Makefile.am +0 -9
  237. package/libusb/examples/dpfp_threaded.c +0 -557
  238. package/libusb/libusb/hotplug.h +0 -99
  239. package/libusb/libusb/os/poll_posix.c +0 -84
  240. package/libusb/libusb/os/poll_posix.h +0 -14
  241. package/libusb/libusb/os/poll_windows.c +0 -447
  242. package/libusb/libusb/os/poll_windows.h +0 -98
  243. package/libusb/libusb/os/wince_usb.c +0 -888
  244. package/libusb/libusb/os/wince_usb.h +0 -126
  245. package/libusb/libusb/os/windows_nt_common.c +0 -1010
  246. package/libusb/libusb/os/windows_nt_common.h +0 -110
  247. package/libusb/libusb/os/windows_nt_shared_types.h +0 -147
  248. package/libusb/msvc/appveyor.bat +0 -27
  249. package/libusb/msvc/ddk_build.cmd +0 -219
  250. package/libusb/msvc/errno.h +0 -102
  251. package/libusb/msvc/fxload_sources +0 -23
  252. package/libusb/msvc/getopt_2005.vcproj +0 -288
  253. package/libusb/msvc/getopt_2010.vcxproj +0 -72
  254. package/libusb/msvc/getopt_sources +0 -24
  255. package/libusb/msvc/hotplugtest_sources +0 -20
  256. package/libusb/msvc/inttypes.h +0 -295
  257. package/libusb/msvc/libusb.dsw +0 -71
  258. package/libusb/msvc/libusb_2005.sln +0 -95
  259. package/libusb/msvc/libusb_2010.sln +0 -105
  260. package/libusb/msvc/libusb_2012.sln +0 -105
  261. package/libusb/msvc/libusb_dll.dsp +0 -194
  262. package/libusb/msvc/libusb_dll_2005.vcproj +0 -464
  263. package/libusb/msvc/libusb_dll_2012.vcxproj +0 -107
  264. package/libusb/msvc/libusb_dll_wince.vcproj +0 -1251
  265. package/libusb/msvc/libusb_sources +0 -43
  266. package/libusb/msvc/libusb_static.dsp +0 -174
  267. package/libusb/msvc/libusb_static_2005.vcproj +0 -390
  268. package/libusb/msvc/libusb_static_2012.vcxproj +0 -98
  269. package/libusb/msvc/libusb_static_wince.vcproj +0 -1179
  270. package/libusb/msvc/libusb_wince.sln +0 -246
  271. package/libusb/msvc/listdevs.dsp +0 -103
  272. package/libusb/msvc/listdevs_2005.vcproj +0 -360
  273. package/libusb/msvc/listdevs_sources +0 -20
  274. package/libusb/msvc/listdevs_wince.vcproj +0 -1120
  275. package/libusb/msvc/missing.c +0 -80
  276. package/libusb/msvc/stdint.h +0 -256
  277. package/libusb/msvc/stress_2005.vcproj +0 -390
  278. package/libusb/msvc/stress_2012.vcxproj +0 -87
  279. package/libusb/msvc/stress_sources +0 -21
  280. package/libusb/msvc/stress_wince.vcproj +0 -1128
  281. package/libusb/msvc/testlibusb_2012.vcxproj +0 -83
  282. package/libusb/msvc/testlibusb_sources +0 -20
  283. package/libusb/msvc/xusb.dsp +0 -102
  284. package/libusb/msvc/xusb_2005.vcproj +0 -344
  285. package/libusb/msvc/xusb_2012.vcxproj +0 -83
  286. package/libusb/msvc/xusb_sources +0 -20
  287. package/libusb/msvc/xusb_wince.vcproj +0 -1120
  288. package/libusb/travis-autogen.sh +0 -39
@@ -1,1251 +0,0 @@
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\hotplug.h"
1195
- >
1196
- </File>
1197
- <File
1198
- RelativePath="..\libusb\libusb.h"
1199
- >
1200
- </File>
1201
- <File
1202
- RelativePath="..\libusb\libusbi.h"
1203
- >
1204
- </File>
1205
- <File
1206
- RelativePath="missing.h"
1207
- >
1208
- </File>
1209
- <File
1210
- RelativePath="..\libusb\os\poll_windows.h"
1211
- >
1212
- </File>
1213
- <File
1214
- RelativePath="..\libusb\os\threads_windows.h"
1215
- >
1216
- </File>
1217
- <File
1218
- RelativePath="..\libusb\version.h"
1219
- >
1220
- </File>
1221
- <File
1222
- RelativePath="..\libusb\version_nano.h"
1223
- >
1224
- </File>
1225
- <File
1226
- RelativePath="..\libusb\os\windows_common.h"
1227
- >
1228
- </File>
1229
- <File
1230
- RelativePath="..\libusb\os\wince_usb.h"
1231
- >
1232
- </File>
1233
- </Filter>
1234
- <Filter
1235
- Name="Resource Files"
1236
- Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
1237
- UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
1238
- >
1239
- <File
1240
- RelativePath="..\libusb\libusb-1.0.def"
1241
- >
1242
- </File>
1243
- <File
1244
- RelativePath="..\libusb\libusb-1.0.rc"
1245
- >
1246
- </File>
1247
- </Filter>
1248
- </Files>
1249
- <Globals>
1250
- </Globals>
1251
- </VisualStudioProject>