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,1120 @@
1
+ <?xml version="1.0" encoding="Windows-1252"?>
2
+ <VisualStudioProject
3
+ ProjectType="Visual C++"
4
+ Version="8.00"
5
+ Name="listdevs"
6
+ ProjectGUID="{960C3BC3-26D6-49C7-ACE4-0AE65CC049E6}"
7
+ RootNamespace="listdevs"
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)\examples"
38
+ IntermediateDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\examples\$(TargetName)"
39
+ ConfigurationType="1"
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;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
64
+ MinimalRebuild="true"
65
+ RuntimeLibrary="3"
66
+ WarningLevel="3"
67
+ DebugInformationFormat="3"
68
+ />
69
+ <Tool
70
+ Name="VCManagedResourceCompilerTool"
71
+ />
72
+ <Tool
73
+ Name="VCResourceCompilerTool"
74
+ />
75
+ <Tool
76
+ Name="VCPreLinkEventTool"
77
+ />
78
+ <Tool
79
+ Name="VCLinkerTool"
80
+ GenerateDebugInformation="true"
81
+ SubSystem="9"
82
+ EntryPointSymbol="mainACRTStartup"
83
+ TargetMachine="0"
84
+ />
85
+ <Tool
86
+ Name="VCALinkTool"
87
+ />
88
+ <Tool
89
+ Name="VCXDCMakeTool"
90
+ />
91
+ <Tool
92
+ Name="VCBscMakeTool"
93
+ />
94
+ <Tool
95
+ Name="VCCodeSignTool"
96
+ />
97
+ <Tool
98
+ Name="VCPostBuildEventTool"
99
+ />
100
+ <DeploymentTool
101
+ ForceDirty="-1"
102
+ RemoteDirectory="%CSIDL_PROGRAM_FILES%\listdevs"
103
+ RegisterOutput="0"
104
+ AdditionalFiles=""
105
+ />
106
+ <DebuggerTool
107
+ />
108
+ </Configuration>
109
+ <Configuration
110
+ Name="Debug|STANDARDSDK_500 (MIPSII)"
111
+ OutputDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\examples"
112
+ IntermediateDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\examples\$(TargetName)"
113
+ ConfigurationType="1"
114
+ CharacterSet="2"
115
+ >
116
+ <Tool
117
+ Name="VCPreBuildEventTool"
118
+ />
119
+ <Tool
120
+ Name="VCCustomBuildTool"
121
+ />
122
+ <Tool
123
+ Name="VCXMLDataGeneratorTool"
124
+ />
125
+ <Tool
126
+ Name="VCWebServiceProxyGeneratorTool"
127
+ />
128
+ <Tool
129
+ Name="VCMIDLTool"
130
+ TargetEnvironment="1"
131
+ />
132
+ <Tool
133
+ Name="VCCLCompilerTool"
134
+ ExecutionBucket="7"
135
+ Optimization="0"
136
+ AdditionalIncludeDirectories="..\libusb;."
137
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
138
+ MinimalRebuild="true"
139
+ RuntimeLibrary="3"
140
+ WarningLevel="3"
141
+ DebugInformationFormat="3"
142
+ />
143
+ <Tool
144
+ Name="VCManagedResourceCompilerTool"
145
+ />
146
+ <Tool
147
+ Name="VCResourceCompilerTool"
148
+ />
149
+ <Tool
150
+ Name="VCPreLinkEventTool"
151
+ />
152
+ <Tool
153
+ Name="VCLinkerTool"
154
+ GenerateDebugInformation="true"
155
+ SubSystem="9"
156
+ EntryPointSymbol="mainACRTStartup"
157
+ TargetMachine="0"
158
+ />
159
+ <Tool
160
+ Name="VCALinkTool"
161
+ />
162
+ <Tool
163
+ Name="VCXDCMakeTool"
164
+ />
165
+ <Tool
166
+ Name="VCBscMakeTool"
167
+ />
168
+ <Tool
169
+ Name="VCCodeSignTool"
170
+ />
171
+ <Tool
172
+ Name="VCPostBuildEventTool"
173
+ />
174
+ <DeploymentTool
175
+ ForceDirty="-1"
176
+ RemoteDirectory=""
177
+ RegisterOutput="0"
178
+ AdditionalFiles=""
179
+ />
180
+ <DebuggerTool
181
+ />
182
+ </Configuration>
183
+ <Configuration
184
+ Name="Debug|STANDARDSDK_500 (MIPSII_FP)"
185
+ OutputDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\examples"
186
+ IntermediateDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\examples\$(TargetName)"
187
+ ConfigurationType="1"
188
+ CharacterSet="2"
189
+ >
190
+ <Tool
191
+ Name="VCPreBuildEventTool"
192
+ />
193
+ <Tool
194
+ Name="VCCustomBuildTool"
195
+ />
196
+ <Tool
197
+ Name="VCXMLDataGeneratorTool"
198
+ />
199
+ <Tool
200
+ Name="VCWebServiceProxyGeneratorTool"
201
+ />
202
+ <Tool
203
+ Name="VCMIDLTool"
204
+ TargetEnvironment="1"
205
+ />
206
+ <Tool
207
+ Name="VCCLCompilerTool"
208
+ ExecutionBucket="7"
209
+ Optimization="0"
210
+ AdditionalIncludeDirectories="..\libusb;."
211
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
212
+ MinimalRebuild="true"
213
+ RuntimeLibrary="3"
214
+ WarningLevel="3"
215
+ DebugInformationFormat="3"
216
+ />
217
+ <Tool
218
+ Name="VCManagedResourceCompilerTool"
219
+ />
220
+ <Tool
221
+ Name="VCResourceCompilerTool"
222
+ />
223
+ <Tool
224
+ Name="VCPreLinkEventTool"
225
+ />
226
+ <Tool
227
+ Name="VCLinkerTool"
228
+ GenerateDebugInformation="true"
229
+ SubSystem="9"
230
+ EntryPointSymbol="mainACRTStartup"
231
+ TargetMachine="0"
232
+ />
233
+ <Tool
234
+ Name="VCALinkTool"
235
+ />
236
+ <Tool
237
+ Name="VCXDCMakeTool"
238
+ />
239
+ <Tool
240
+ Name="VCBscMakeTool"
241
+ />
242
+ <Tool
243
+ Name="VCCodeSignTool"
244
+ />
245
+ <Tool
246
+ Name="VCPostBuildEventTool"
247
+ />
248
+ <DeploymentTool
249
+ ForceDirty="-1"
250
+ RemoteDirectory=""
251
+ RegisterOutput="0"
252
+ AdditionalFiles=""
253
+ />
254
+ <DebuggerTool
255
+ />
256
+ </Configuration>
257
+ <Configuration
258
+ Name="Debug|STANDARDSDK_500 (MIPSIV)"
259
+ OutputDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\examples"
260
+ IntermediateDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\examples\$(TargetName)"
261
+ ConfigurationType="1"
262
+ CharacterSet="2"
263
+ >
264
+ <Tool
265
+ Name="VCPreBuildEventTool"
266
+ />
267
+ <Tool
268
+ Name="VCCustomBuildTool"
269
+ />
270
+ <Tool
271
+ Name="VCXMLDataGeneratorTool"
272
+ />
273
+ <Tool
274
+ Name="VCWebServiceProxyGeneratorTool"
275
+ />
276
+ <Tool
277
+ Name="VCMIDLTool"
278
+ TargetEnvironment="1"
279
+ />
280
+ <Tool
281
+ Name="VCCLCompilerTool"
282
+ ExecutionBucket="7"
283
+ Optimization="0"
284
+ AdditionalIncludeDirectories="..\libusb;."
285
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
286
+ MinimalRebuild="true"
287
+ RuntimeLibrary="3"
288
+ WarningLevel="3"
289
+ DebugInformationFormat="3"
290
+ />
291
+ <Tool
292
+ Name="VCManagedResourceCompilerTool"
293
+ />
294
+ <Tool
295
+ Name="VCResourceCompilerTool"
296
+ />
297
+ <Tool
298
+ Name="VCPreLinkEventTool"
299
+ />
300
+ <Tool
301
+ Name="VCLinkerTool"
302
+ GenerateDebugInformation="true"
303
+ SubSystem="9"
304
+ EntryPointSymbol="mainACRTStartup"
305
+ TargetMachine="0"
306
+ />
307
+ <Tool
308
+ Name="VCALinkTool"
309
+ />
310
+ <Tool
311
+ Name="VCXDCMakeTool"
312
+ />
313
+ <Tool
314
+ Name="VCBscMakeTool"
315
+ />
316
+ <Tool
317
+ Name="VCCodeSignTool"
318
+ />
319
+ <Tool
320
+ Name="VCPostBuildEventTool"
321
+ />
322
+ <DeploymentTool
323
+ ForceDirty="-1"
324
+ RemoteDirectory=""
325
+ RegisterOutput="0"
326
+ AdditionalFiles=""
327
+ />
328
+ <DebuggerTool
329
+ />
330
+ </Configuration>
331
+ <Configuration
332
+ Name="Debug|STANDARDSDK_500 (MIPSIV_FP)"
333
+ OutputDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\examples"
334
+ IntermediateDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\examples\$(TargetName)"
335
+ ConfigurationType="1"
336
+ CharacterSet="2"
337
+ >
338
+ <Tool
339
+ Name="VCPreBuildEventTool"
340
+ />
341
+ <Tool
342
+ Name="VCCustomBuildTool"
343
+ />
344
+ <Tool
345
+ Name="VCXMLDataGeneratorTool"
346
+ />
347
+ <Tool
348
+ Name="VCWebServiceProxyGeneratorTool"
349
+ />
350
+ <Tool
351
+ Name="VCMIDLTool"
352
+ TargetEnvironment="1"
353
+ />
354
+ <Tool
355
+ Name="VCCLCompilerTool"
356
+ ExecutionBucket="7"
357
+ Optimization="0"
358
+ AdditionalIncludeDirectories="..\libusb;."
359
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
360
+ MinimalRebuild="true"
361
+ RuntimeLibrary="3"
362
+ WarningLevel="3"
363
+ DebugInformationFormat="3"
364
+ />
365
+ <Tool
366
+ Name="VCManagedResourceCompilerTool"
367
+ />
368
+ <Tool
369
+ Name="VCResourceCompilerTool"
370
+ />
371
+ <Tool
372
+ Name="VCPreLinkEventTool"
373
+ />
374
+ <Tool
375
+ Name="VCLinkerTool"
376
+ GenerateDebugInformation="true"
377
+ SubSystem="9"
378
+ EntryPointSymbol="mainACRTStartup"
379
+ TargetMachine="0"
380
+ />
381
+ <Tool
382
+ Name="VCALinkTool"
383
+ />
384
+ <Tool
385
+ Name="VCXDCMakeTool"
386
+ />
387
+ <Tool
388
+ Name="VCBscMakeTool"
389
+ />
390
+ <Tool
391
+ Name="VCCodeSignTool"
392
+ />
393
+ <Tool
394
+ Name="VCPostBuildEventTool"
395
+ />
396
+ <DeploymentTool
397
+ ForceDirty="-1"
398
+ RemoteDirectory=""
399
+ RegisterOutput="0"
400
+ AdditionalFiles=""
401
+ />
402
+ <DebuggerTool
403
+ />
404
+ </Configuration>
405
+ <Configuration
406
+ Name="Debug|STANDARDSDK_500 (SH4)"
407
+ OutputDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\examples"
408
+ IntermediateDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\examples\$(TargetName)"
409
+ ConfigurationType="1"
410
+ CharacterSet="2"
411
+ >
412
+ <Tool
413
+ Name="VCPreBuildEventTool"
414
+ />
415
+ <Tool
416
+ Name="VCCustomBuildTool"
417
+ />
418
+ <Tool
419
+ Name="VCXMLDataGeneratorTool"
420
+ />
421
+ <Tool
422
+ Name="VCWebServiceProxyGeneratorTool"
423
+ />
424
+ <Tool
425
+ Name="VCMIDLTool"
426
+ TargetEnvironment="1"
427
+ />
428
+ <Tool
429
+ Name="VCCLCompilerTool"
430
+ ExecutionBucket="7"
431
+ Optimization="0"
432
+ AdditionalIncludeDirectories="..\libusb;."
433
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
434
+ MinimalRebuild="true"
435
+ RuntimeLibrary="3"
436
+ WarningLevel="3"
437
+ DebugInformationFormat="3"
438
+ />
439
+ <Tool
440
+ Name="VCManagedResourceCompilerTool"
441
+ />
442
+ <Tool
443
+ Name="VCResourceCompilerTool"
444
+ />
445
+ <Tool
446
+ Name="VCPreLinkEventTool"
447
+ />
448
+ <Tool
449
+ Name="VCLinkerTool"
450
+ GenerateDebugInformation="true"
451
+ SubSystem="9"
452
+ EntryPointSymbol="mainACRTStartup"
453
+ TargetMachine="0"
454
+ />
455
+ <Tool
456
+ Name="VCALinkTool"
457
+ />
458
+ <Tool
459
+ Name="VCXDCMakeTool"
460
+ />
461
+ <Tool
462
+ Name="VCBscMakeTool"
463
+ />
464
+ <Tool
465
+ Name="VCCodeSignTool"
466
+ />
467
+ <Tool
468
+ Name="VCPostBuildEventTool"
469
+ />
470
+ <DeploymentTool
471
+ ForceDirty="-1"
472
+ RemoteDirectory=""
473
+ RegisterOutput="0"
474
+ AdditionalFiles=""
475
+ />
476
+ <DebuggerTool
477
+ />
478
+ </Configuration>
479
+ <Configuration
480
+ Name="Debug|STANDARDSDK_500 (x86)"
481
+ OutputDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\examples"
482
+ IntermediateDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\examples\$(TargetName)"
483
+ ConfigurationType="1"
484
+ CharacterSet="2"
485
+ >
486
+ <Tool
487
+ Name="VCPreBuildEventTool"
488
+ />
489
+ <Tool
490
+ Name="VCCustomBuildTool"
491
+ />
492
+ <Tool
493
+ Name="VCXMLDataGeneratorTool"
494
+ />
495
+ <Tool
496
+ Name="VCWebServiceProxyGeneratorTool"
497
+ />
498
+ <Tool
499
+ Name="VCMIDLTool"
500
+ TargetEnvironment="1"
501
+ />
502
+ <Tool
503
+ Name="VCCLCompilerTool"
504
+ ExecutionBucket="7"
505
+ Optimization="0"
506
+ AdditionalIncludeDirectories="..\libusb;."
507
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
508
+ MinimalRebuild="true"
509
+ RuntimeLibrary="3"
510
+ WarningLevel="3"
511
+ DebugInformationFormat="3"
512
+ />
513
+ <Tool
514
+ Name="VCManagedResourceCompilerTool"
515
+ />
516
+ <Tool
517
+ Name="VCResourceCompilerTool"
518
+ />
519
+ <Tool
520
+ Name="VCPreLinkEventTool"
521
+ />
522
+ <Tool
523
+ Name="VCLinkerTool"
524
+ GenerateDebugInformation="true"
525
+ IgnoreDefaultLibraryNames="oldnames.lib,libc.lib"
526
+ SubSystem="9"
527
+ EntryPointSymbol="mainACRTStartup"
528
+ TargetMachine="0"
529
+ />
530
+ <Tool
531
+ Name="VCALinkTool"
532
+ />
533
+ <Tool
534
+ Name="VCXDCMakeTool"
535
+ />
536
+ <Tool
537
+ Name="VCBscMakeTool"
538
+ />
539
+ <Tool
540
+ Name="VCCodeSignTool"
541
+ />
542
+ <Tool
543
+ Name="VCPostBuildEventTool"
544
+ />
545
+ <DeploymentTool
546
+ ForceDirty="-1"
547
+ RemoteDirectory=""
548
+ RegisterOutput="0"
549
+ AdditionalFiles=""
550
+ />
551
+ <DebuggerTool
552
+ />
553
+ </Configuration>
554
+ <Configuration
555
+ Name="Release|STANDARDSDK_500 (ARMV4I)"
556
+ OutputDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\examples"
557
+ IntermediateDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\examples\$(TargetName)"
558
+ ConfigurationType="1"
559
+ CharacterSet="2"
560
+ WholeProgramOptimization="1"
561
+ >
562
+ <Tool
563
+ Name="VCPreBuildEventTool"
564
+ />
565
+ <Tool
566
+ Name="VCCustomBuildTool"
567
+ />
568
+ <Tool
569
+ Name="VCXMLDataGeneratorTool"
570
+ />
571
+ <Tool
572
+ Name="VCWebServiceProxyGeneratorTool"
573
+ />
574
+ <Tool
575
+ Name="VCMIDLTool"
576
+ TargetEnvironment="1"
577
+ />
578
+ <Tool
579
+ Name="VCCLCompilerTool"
580
+ ExecutionBucket="7"
581
+ AdditionalIncludeDirectories="..\libusb;."
582
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
583
+ MinimalRebuild="true"
584
+ RuntimeLibrary="2"
585
+ WarningLevel="3"
586
+ DebugInformationFormat="3"
587
+ />
588
+ <Tool
589
+ Name="VCManagedResourceCompilerTool"
590
+ />
591
+ <Tool
592
+ Name="VCResourceCompilerTool"
593
+ />
594
+ <Tool
595
+ Name="VCPreLinkEventTool"
596
+ />
597
+ <Tool
598
+ Name="VCLinkerTool"
599
+ GenerateDebugInformation="true"
600
+ SubSystem="9"
601
+ OptimizeReferences="2"
602
+ EnableCOMDATFolding="2"
603
+ EntryPointSymbol="mainACRTStartup"
604
+ TargetMachine="0"
605
+ />
606
+ <Tool
607
+ Name="VCALinkTool"
608
+ />
609
+ <Tool
610
+ Name="VCXDCMakeTool"
611
+ />
612
+ <Tool
613
+ Name="VCBscMakeTool"
614
+ />
615
+ <Tool
616
+ Name="VCCodeSignTool"
617
+ />
618
+ <Tool
619
+ Name="VCPostBuildEventTool"
620
+ />
621
+ <DeploymentTool
622
+ ForceDirty="-1"
623
+ RemoteDirectory=""
624
+ RegisterOutput="0"
625
+ AdditionalFiles=""
626
+ />
627
+ <DebuggerTool
628
+ />
629
+ </Configuration>
630
+ <Configuration
631
+ Name="Release|STANDARDSDK_500 (MIPSII)"
632
+ OutputDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\examples"
633
+ IntermediateDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\examples\$(TargetName)"
634
+ ConfigurationType="1"
635
+ CharacterSet="2"
636
+ WholeProgramOptimization="1"
637
+ >
638
+ <Tool
639
+ Name="VCPreBuildEventTool"
640
+ />
641
+ <Tool
642
+ Name="VCCustomBuildTool"
643
+ />
644
+ <Tool
645
+ Name="VCXMLDataGeneratorTool"
646
+ />
647
+ <Tool
648
+ Name="VCWebServiceProxyGeneratorTool"
649
+ />
650
+ <Tool
651
+ Name="VCMIDLTool"
652
+ TargetEnvironment="1"
653
+ />
654
+ <Tool
655
+ Name="VCCLCompilerTool"
656
+ ExecutionBucket="7"
657
+ AdditionalIncludeDirectories="..\libusb;."
658
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
659
+ MinimalRebuild="true"
660
+ RuntimeLibrary="2"
661
+ WarningLevel="3"
662
+ DebugInformationFormat="3"
663
+ />
664
+ <Tool
665
+ Name="VCManagedResourceCompilerTool"
666
+ />
667
+ <Tool
668
+ Name="VCResourceCompilerTool"
669
+ />
670
+ <Tool
671
+ Name="VCPreLinkEventTool"
672
+ />
673
+ <Tool
674
+ Name="VCLinkerTool"
675
+ GenerateDebugInformation="true"
676
+ SubSystem="9"
677
+ OptimizeReferences="2"
678
+ EnableCOMDATFolding="2"
679
+ EntryPointSymbol="mainACRTStartup"
680
+ TargetMachine="0"
681
+ />
682
+ <Tool
683
+ Name="VCALinkTool"
684
+ />
685
+ <Tool
686
+ Name="VCXDCMakeTool"
687
+ />
688
+ <Tool
689
+ Name="VCBscMakeTool"
690
+ />
691
+ <Tool
692
+ Name="VCCodeSignTool"
693
+ />
694
+ <Tool
695
+ Name="VCPostBuildEventTool"
696
+ />
697
+ <DeploymentTool
698
+ ForceDirty="-1"
699
+ RemoteDirectory=""
700
+ RegisterOutput="0"
701
+ AdditionalFiles=""
702
+ />
703
+ <DebuggerTool
704
+ />
705
+ </Configuration>
706
+ <Configuration
707
+ Name="Release|STANDARDSDK_500 (MIPSII_FP)"
708
+ OutputDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\examples"
709
+ IntermediateDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\examples\$(TargetName)"
710
+ ConfigurationType="1"
711
+ CharacterSet="2"
712
+ WholeProgramOptimization="1"
713
+ >
714
+ <Tool
715
+ Name="VCPreBuildEventTool"
716
+ />
717
+ <Tool
718
+ Name="VCCustomBuildTool"
719
+ />
720
+ <Tool
721
+ Name="VCXMLDataGeneratorTool"
722
+ />
723
+ <Tool
724
+ Name="VCWebServiceProxyGeneratorTool"
725
+ />
726
+ <Tool
727
+ Name="VCMIDLTool"
728
+ TargetEnvironment="1"
729
+ />
730
+ <Tool
731
+ Name="VCCLCompilerTool"
732
+ ExecutionBucket="7"
733
+ AdditionalIncludeDirectories="..\libusb;."
734
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
735
+ MinimalRebuild="true"
736
+ RuntimeLibrary="2"
737
+ WarningLevel="3"
738
+ DebugInformationFormat="3"
739
+ />
740
+ <Tool
741
+ Name="VCManagedResourceCompilerTool"
742
+ />
743
+ <Tool
744
+ Name="VCResourceCompilerTool"
745
+ />
746
+ <Tool
747
+ Name="VCPreLinkEventTool"
748
+ />
749
+ <Tool
750
+ Name="VCLinkerTool"
751
+ GenerateDebugInformation="true"
752
+ SubSystem="9"
753
+ OptimizeReferences="2"
754
+ EnableCOMDATFolding="2"
755
+ EntryPointSymbol="mainACRTStartup"
756
+ TargetMachine="0"
757
+ />
758
+ <Tool
759
+ Name="VCALinkTool"
760
+ />
761
+ <Tool
762
+ Name="VCXDCMakeTool"
763
+ />
764
+ <Tool
765
+ Name="VCBscMakeTool"
766
+ />
767
+ <Tool
768
+ Name="VCCodeSignTool"
769
+ />
770
+ <Tool
771
+ Name="VCPostBuildEventTool"
772
+ />
773
+ <DeploymentTool
774
+ ForceDirty="-1"
775
+ RemoteDirectory=""
776
+ RegisterOutput="0"
777
+ AdditionalFiles=""
778
+ />
779
+ <DebuggerTool
780
+ />
781
+ </Configuration>
782
+ <Configuration
783
+ Name="Release|STANDARDSDK_500 (MIPSIV)"
784
+ OutputDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\examples"
785
+ IntermediateDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\examples\$(TargetName)"
786
+ ConfigurationType="1"
787
+ CharacterSet="2"
788
+ WholeProgramOptimization="1"
789
+ >
790
+ <Tool
791
+ Name="VCPreBuildEventTool"
792
+ />
793
+ <Tool
794
+ Name="VCCustomBuildTool"
795
+ />
796
+ <Tool
797
+ Name="VCXMLDataGeneratorTool"
798
+ />
799
+ <Tool
800
+ Name="VCWebServiceProxyGeneratorTool"
801
+ />
802
+ <Tool
803
+ Name="VCMIDLTool"
804
+ TargetEnvironment="1"
805
+ />
806
+ <Tool
807
+ Name="VCCLCompilerTool"
808
+ ExecutionBucket="7"
809
+ AdditionalIncludeDirectories="..\libusb;."
810
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
811
+ MinimalRebuild="true"
812
+ RuntimeLibrary="2"
813
+ WarningLevel="3"
814
+ DebugInformationFormat="3"
815
+ />
816
+ <Tool
817
+ Name="VCManagedResourceCompilerTool"
818
+ />
819
+ <Tool
820
+ Name="VCResourceCompilerTool"
821
+ />
822
+ <Tool
823
+ Name="VCPreLinkEventTool"
824
+ />
825
+ <Tool
826
+ Name="VCLinkerTool"
827
+ GenerateDebugInformation="true"
828
+ SubSystem="9"
829
+ OptimizeReferences="2"
830
+ EnableCOMDATFolding="2"
831
+ EntryPointSymbol="mainACRTStartup"
832
+ TargetMachine="0"
833
+ />
834
+ <Tool
835
+ Name="VCALinkTool"
836
+ />
837
+ <Tool
838
+ Name="VCXDCMakeTool"
839
+ />
840
+ <Tool
841
+ Name="VCBscMakeTool"
842
+ />
843
+ <Tool
844
+ Name="VCCodeSignTool"
845
+ />
846
+ <Tool
847
+ Name="VCPostBuildEventTool"
848
+ />
849
+ <DeploymentTool
850
+ ForceDirty="-1"
851
+ RemoteDirectory=""
852
+ RegisterOutput="0"
853
+ AdditionalFiles=""
854
+ />
855
+ <DebuggerTool
856
+ />
857
+ </Configuration>
858
+ <Configuration
859
+ Name="Release|STANDARDSDK_500 (MIPSIV_FP)"
860
+ OutputDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\examples"
861
+ IntermediateDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\examples\$(TargetName)"
862
+ ConfigurationType="1"
863
+ CharacterSet="2"
864
+ WholeProgramOptimization="1"
865
+ >
866
+ <Tool
867
+ Name="VCPreBuildEventTool"
868
+ />
869
+ <Tool
870
+ Name="VCCustomBuildTool"
871
+ />
872
+ <Tool
873
+ Name="VCXMLDataGeneratorTool"
874
+ />
875
+ <Tool
876
+ Name="VCWebServiceProxyGeneratorTool"
877
+ />
878
+ <Tool
879
+ Name="VCMIDLTool"
880
+ TargetEnvironment="1"
881
+ />
882
+ <Tool
883
+ Name="VCCLCompilerTool"
884
+ ExecutionBucket="7"
885
+ AdditionalIncludeDirectories="..\libusb;."
886
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
887
+ MinimalRebuild="true"
888
+ RuntimeLibrary="2"
889
+ WarningLevel="3"
890
+ DebugInformationFormat="3"
891
+ />
892
+ <Tool
893
+ Name="VCManagedResourceCompilerTool"
894
+ />
895
+ <Tool
896
+ Name="VCResourceCompilerTool"
897
+ />
898
+ <Tool
899
+ Name="VCPreLinkEventTool"
900
+ />
901
+ <Tool
902
+ Name="VCLinkerTool"
903
+ GenerateDebugInformation="true"
904
+ SubSystem="9"
905
+ OptimizeReferences="2"
906
+ EnableCOMDATFolding="2"
907
+ EntryPointSymbol="mainACRTStartup"
908
+ TargetMachine="0"
909
+ />
910
+ <Tool
911
+ Name="VCALinkTool"
912
+ />
913
+ <Tool
914
+ Name="VCXDCMakeTool"
915
+ />
916
+ <Tool
917
+ Name="VCBscMakeTool"
918
+ />
919
+ <Tool
920
+ Name="VCCodeSignTool"
921
+ />
922
+ <Tool
923
+ Name="VCPostBuildEventTool"
924
+ />
925
+ <DeploymentTool
926
+ ForceDirty="-1"
927
+ RemoteDirectory=""
928
+ RegisterOutput="0"
929
+ AdditionalFiles=""
930
+ />
931
+ <DebuggerTool
932
+ />
933
+ </Configuration>
934
+ <Configuration
935
+ Name="Release|STANDARDSDK_500 (SH4)"
936
+ OutputDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\examples"
937
+ IntermediateDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\examples\$(TargetName)"
938
+ ConfigurationType="1"
939
+ CharacterSet="2"
940
+ WholeProgramOptimization="1"
941
+ >
942
+ <Tool
943
+ Name="VCPreBuildEventTool"
944
+ />
945
+ <Tool
946
+ Name="VCCustomBuildTool"
947
+ />
948
+ <Tool
949
+ Name="VCXMLDataGeneratorTool"
950
+ />
951
+ <Tool
952
+ Name="VCWebServiceProxyGeneratorTool"
953
+ />
954
+ <Tool
955
+ Name="VCMIDLTool"
956
+ TargetEnvironment="1"
957
+ />
958
+ <Tool
959
+ Name="VCCLCompilerTool"
960
+ ExecutionBucket="7"
961
+ AdditionalIncludeDirectories="..\libusb;."
962
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
963
+ MinimalRebuild="true"
964
+ RuntimeLibrary="2"
965
+ WarningLevel="3"
966
+ DebugInformationFormat="3"
967
+ />
968
+ <Tool
969
+ Name="VCManagedResourceCompilerTool"
970
+ />
971
+ <Tool
972
+ Name="VCResourceCompilerTool"
973
+ />
974
+ <Tool
975
+ Name="VCPreLinkEventTool"
976
+ />
977
+ <Tool
978
+ Name="VCLinkerTool"
979
+ GenerateDebugInformation="true"
980
+ SubSystem="9"
981
+ OptimizeReferences="2"
982
+ EnableCOMDATFolding="2"
983
+ EntryPointSymbol="mainACRTStartup"
984
+ TargetMachine="0"
985
+ />
986
+ <Tool
987
+ Name="VCALinkTool"
988
+ />
989
+ <Tool
990
+ Name="VCXDCMakeTool"
991
+ />
992
+ <Tool
993
+ Name="VCBscMakeTool"
994
+ />
995
+ <Tool
996
+ Name="VCCodeSignTool"
997
+ />
998
+ <Tool
999
+ Name="VCPostBuildEventTool"
1000
+ />
1001
+ <DeploymentTool
1002
+ ForceDirty="-1"
1003
+ RemoteDirectory=""
1004
+ RegisterOutput="0"
1005
+ AdditionalFiles=""
1006
+ />
1007
+ <DebuggerTool
1008
+ />
1009
+ </Configuration>
1010
+ <Configuration
1011
+ Name="Release|STANDARDSDK_500 (x86)"
1012
+ OutputDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\examples"
1013
+ IntermediateDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\examples\$(TargetName)"
1014
+ ConfigurationType="1"
1015
+ CharacterSet="2"
1016
+ WholeProgramOptimization="1"
1017
+ >
1018
+ <Tool
1019
+ Name="VCPreBuildEventTool"
1020
+ />
1021
+ <Tool
1022
+ Name="VCCustomBuildTool"
1023
+ />
1024
+ <Tool
1025
+ Name="VCXMLDataGeneratorTool"
1026
+ />
1027
+ <Tool
1028
+ Name="VCWebServiceProxyGeneratorTool"
1029
+ />
1030
+ <Tool
1031
+ Name="VCMIDLTool"
1032
+ TargetEnvironment="1"
1033
+ />
1034
+ <Tool
1035
+ Name="VCCLCompilerTool"
1036
+ ExecutionBucket="7"
1037
+ AdditionalIncludeDirectories="..\libusb;."
1038
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
1039
+ MinimalRebuild="true"
1040
+ RuntimeLibrary="2"
1041
+ WarningLevel="3"
1042
+ DebugInformationFormat="3"
1043
+ />
1044
+ <Tool
1045
+ Name="VCManagedResourceCompilerTool"
1046
+ />
1047
+ <Tool
1048
+ Name="VCResourceCompilerTool"
1049
+ />
1050
+ <Tool
1051
+ Name="VCPreLinkEventTool"
1052
+ />
1053
+ <Tool
1054
+ Name="VCLinkerTool"
1055
+ GenerateDebugInformation="true"
1056
+ IgnoreDefaultLibraryNames="oldnames.lib,libc.lib"
1057
+ SubSystem="9"
1058
+ OptimizeReferences="2"
1059
+ EnableCOMDATFolding="2"
1060
+ EntryPointSymbol="mainACRTStartup"
1061
+ TargetMachine="0"
1062
+ />
1063
+ <Tool
1064
+ Name="VCALinkTool"
1065
+ />
1066
+ <Tool
1067
+ Name="VCXDCMakeTool"
1068
+ />
1069
+ <Tool
1070
+ Name="VCBscMakeTool"
1071
+ />
1072
+ <Tool
1073
+ Name="VCCodeSignTool"
1074
+ />
1075
+ <Tool
1076
+ Name="VCPostBuildEventTool"
1077
+ />
1078
+ <DeploymentTool
1079
+ ForceDirty="-1"
1080
+ RemoteDirectory=""
1081
+ RegisterOutput="0"
1082
+ AdditionalFiles=""
1083
+ />
1084
+ <DebuggerTool
1085
+ />
1086
+ </Configuration>
1087
+ </Configurations>
1088
+ <References>
1089
+ <ProjectReference
1090
+ ReferencedProjectIdentifier="{6A49B75F-FB1C-45C0-B7C3-A7698255E7E9}"
1091
+ RelativePathToProject=".\libusb-1.0.vcproj"
1092
+ />
1093
+ </References>
1094
+ <Files>
1095
+ <Filter
1096
+ Name="Source Files"
1097
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
1098
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
1099
+ >
1100
+ <File
1101
+ RelativePath="..\examples\listdevs.c"
1102
+ >
1103
+ </File>
1104
+ </Filter>
1105
+ <Filter
1106
+ Name="Header Files"
1107
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
1108
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
1109
+ >
1110
+ </Filter>
1111
+ <Filter
1112
+ Name="Resource Files"
1113
+ Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
1114
+ UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
1115
+ >
1116
+ </Filter>
1117
+ </Files>
1118
+ <Globals>
1119
+ </Globals>
1120
+ </VisualStudioProject>