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,194 @@
1
+ # Microsoft Developer Studio Project File - Name="libusb_dll" - Package Owner=<4>
2
+ # Microsoft Developer Studio Generated Build File, Format Version 6.00
3
+ # ** DO NOT EDIT **
4
+
5
+ # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
6
+
7
+ CFG=libusb_dll - Win32 Debug
8
+ !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9
+ !MESSAGE use the Export Makefile command and run
10
+ !MESSAGE
11
+ !MESSAGE NMAKE /f "libusb_dll.mak".
12
+ !MESSAGE
13
+ !MESSAGE You can specify a configuration when running NMAKE
14
+ !MESSAGE by defining the macro CFG on the command line. For example:
15
+ !MESSAGE
16
+ !MESSAGE NMAKE /f "libusb_dll.mak" CFG="libusb_dll - Win32 Debug"
17
+ !MESSAGE
18
+ !MESSAGE Possible choices for configuration are:
19
+ !MESSAGE
20
+ !MESSAGE "libusb_dll - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
21
+ !MESSAGE "libusb_dll - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
22
+ !MESSAGE
23
+
24
+ # Begin Project
25
+ # PROP AllowPerConfigDependencies 0
26
+ # PROP Scc_ProjName ""
27
+ # PROP Scc_LocalPath ""
28
+ CPP=cl.exe
29
+ MTL=midl.exe
30
+ RSC=rc.exe
31
+
32
+ !IF "$(CFG)" == "libusb_dll - Win32 Release"
33
+
34
+ # PROP BASE Use_MFC 0
35
+ # PROP BASE Use_Debug_Libraries 0
36
+ # PROP BASE Output_Dir "Release"
37
+ # PROP BASE Intermediate_Dir "Release"
38
+ # PROP BASE Target_Dir ""
39
+ # PROP Use_MFC 0
40
+ # PROP Use_Debug_Libraries 0
41
+ # PROP Output_Dir "../Win32/Release/dll"
42
+ # PROP Intermediate_Dir "../Win32/Release/dll"
43
+ # PROP Ignore_Export_Lib 0
44
+ # PROP Target_Dir ""
45
+ # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "LIBUSB_DLL_EXPORTS" /YX /FD /c
46
+ # ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "../libusb" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_UNICODE" /D "UNICODE" /U "_MBCS" /D "_USRDLL" /FR /FD /EHsc /c
47
+ # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
48
+ # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
49
+ # ADD BASE RSC /l 0x409 /d "NDEBUG"
50
+ # ADD RSC /l 0x409 /d "NDEBUG"
51
+ BSC32=bscmake.exe
52
+ # ADD BASE BSC32 /nologo
53
+ # ADD BSC32 /nologo
54
+ LINK32=link.exe
55
+ # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib shell32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
56
+ # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib shell32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /out:"Win32/Release/dll/libusb-1.0.dll"
57
+
58
+ !ELSEIF "$(CFG)" == "libusb_dll - Win32 Debug"
59
+
60
+ # PROP BASE Use_MFC 0
61
+ # PROP BASE Use_Debug_Libraries 1
62
+ # PROP BASE Output_Dir "Debug"
63
+ # PROP BASE Intermediate_Dir "Debug"
64
+ # PROP BASE Target_Dir ""
65
+ # PROP Use_MFC 0
66
+ # PROP Use_Debug_Libraries 1
67
+ # PROP Output_Dir "../Win32/Debug/dll"
68
+ # PROP Intermediate_Dir "../Win32/Debug/dll"
69
+ # PROP Ignore_Export_Lib 0
70
+ # PROP Target_Dir ""
71
+ # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_USRDLL" /D "LIBUSB_DLL_EXPORTS" /YX /FD /GZ /c
72
+ # ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "../libusb" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_UNICODE" /D "UNICODE" /U "_MBCS" /D "_USRDLL" /FR /FD /EHsc /c
73
+ # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
74
+ # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
75
+ # ADD BASE RSC /l 0x409 /d "_DEBUG"
76
+ # ADD RSC /l 0x409 /d "_DEBUG"
77
+ BSC32=bscmake.exe
78
+ # ADD BASE BSC32 /nologo
79
+ # ADD BSC32 /nologo /n
80
+ LINK32=link.exe
81
+ # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib shell32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
82
+ # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib shell32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /out:"Win32/Debug/dll/libusb-1.0.dll"
83
+ # SUBTRACT LINK32 /pdb:none /incremental:no
84
+
85
+ !ENDIF
86
+
87
+ # Begin Target
88
+
89
+ # Name "libusb_dll - Win32 Release"
90
+ # Name "libusb_dll - Win32 Debug"
91
+ # Begin Group "Source Files"
92
+
93
+ # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
94
+ # Begin Source File
95
+
96
+ SOURCE=..\libusb\core.c
97
+ # End Source File
98
+ # Begin Source File
99
+
100
+ SOURCE=..\libusb\os\darwin_usb.c
101
+ # PROP Exclude_From_Build 1
102
+ # End Source File
103
+ # Begin Source File
104
+
105
+ SOURCE=..\libusb\descriptor.c
106
+ # End Source File
107
+ # Begin Source File
108
+
109
+ SOURCE=..\libusb\io.c
110
+ # End Source File
111
+ # Begin Source File
112
+
113
+ SOURCE="..\libusb\libusb-1.0.rc"
114
+ # End Source File
115
+ # Begin Source File
116
+
117
+ SOURCE="..\libusb\libusb-1.0.def"
118
+ # End Source File
119
+ # Begin Source File
120
+
121
+ SOURCE=..\libusb\os\linux_usbfs.c
122
+ # PROP Exclude_From_Build 1
123
+ # End Source File
124
+ # Begin Source File
125
+
126
+ SOURCE=..\libusb\os\poll_windows.c
127
+ # End Source File
128
+ # Begin Source File
129
+
130
+ SOURCE=..\libusb\sync.c
131
+ # End Source File
132
+ # Begin Source File
133
+
134
+ SOURCE=..\libusb\os\threads_windows.c
135
+ # End Source File
136
+ # Begin Source File
137
+
138
+ SOURCE=..\libusb\os\windows_usb.c
139
+ # End Source File
140
+ # End Group
141
+ # Begin Group "Header Files"
142
+
143
+ # PROP Default_Filter "h;hpp;hxx;hm;inl"
144
+ # Begin Source File
145
+
146
+ SOURCE=.\config.h
147
+ # End Source File
148
+ # Begin Source File
149
+
150
+ SOURCE=..\libusb\os\darwin_usb.h
151
+ # End Source File
152
+ # Begin Source File
153
+
154
+ SOURCE=..\libusb\libusb.h
155
+ # End Source File
156
+ # Begin Source File
157
+
158
+ SOURCE=..\libusb\libusbi.h
159
+ # End Source File
160
+ # Begin Source File
161
+
162
+ SOURCE=..\libusb\os\linux_usbfs.h
163
+ # End Source File
164
+ # Begin Source File
165
+
166
+ SOURCE=..\libusb\os\poll_posix.h
167
+ # End Source File
168
+ # Begin Source File
169
+
170
+ SOURCE=..\libusb\os\poll_windows.h
171
+ # End Source File
172
+ # Begin Source File
173
+
174
+ SOURCE=..\libusb\os\threads_posix.h
175
+ # End Source File
176
+ # Begin Source File
177
+
178
+ SOURCE=..\libusb\os\threads_windows.h
179
+ # End Source File
180
+ # Begin Source File
181
+
182
+ SOURCE=..\libusb\os\windows_usb.h
183
+ # End Source File
184
+ # Begin Source File
185
+
186
+ SOURCE=..\libusb\os\windows_common.h
187
+ # End Source File
188
+ # End Group
189
+ # Begin Group "Resource Files"
190
+
191
+ # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
192
+ # End Group
193
+ # End Target
194
+ # End Project
@@ -0,0 +1,436 @@
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="{8224C054-5968-4238-832C-167155E7ECC3}"
7
+ RootNamespace="libusbdll"
8
+ Keyword="Win32Proj"
9
+ >
10
+ <Platforms>
11
+ <Platform
12
+ Name="Win32"
13
+ />
14
+ <Platform
15
+ Name="x64"
16
+ />
17
+ </Platforms>
18
+ <ToolFiles>
19
+ </ToolFiles>
20
+ <Configurations>
21
+ <Configuration
22
+ Name="Debug|Win32"
23
+ OutputDirectory="..\$(PlatformName)\$(ConfigurationName)\dll"
24
+ IntermediateDirectory="..\$(PlatformName)\$(ConfigurationName)\dll\libusb-1.0"
25
+ ConfigurationType="2"
26
+ CharacterSet="1"
27
+ >
28
+ <Tool
29
+ Name="VCPreBuildEventTool"
30
+ />
31
+ <Tool
32
+ Name="VCCustomBuildTool"
33
+ />
34
+ <Tool
35
+ Name="VCXMLDataGeneratorTool"
36
+ />
37
+ <Tool
38
+ Name="VCWebServiceProxyGeneratorTool"
39
+ />
40
+ <Tool
41
+ Name="VCMIDLTool"
42
+ />
43
+ <Tool
44
+ Name="VCCLCompilerTool"
45
+ Optimization="0"
46
+ AdditionalIncludeDirectories=".;..\libusb"
47
+ PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_WARNINGS"
48
+ MinimalRebuild="true"
49
+ BasicRuntimeChecks="3"
50
+ RuntimeLibrary="3"
51
+ UsePrecompiledHeader="0"
52
+ WarningLevel="3"
53
+ Detect64BitPortabilityProblems="false"
54
+ DebugInformationFormat="4"
55
+ />
56
+ <Tool
57
+ Name="VCManagedResourceCompilerTool"
58
+ />
59
+ <Tool
60
+ Name="VCResourceCompilerTool"
61
+ />
62
+ <Tool
63
+ Name="VCPreLinkEventTool"
64
+ />
65
+ <Tool
66
+ Name="VCLinkerTool"
67
+ OutputFile="$(OutDir)\libusb-1.0.dll"
68
+ LinkIncremental="2"
69
+ ModuleDefinitionFile="..\libusb\libusb-1.0.def"
70
+ GenerateDebugInformation="true"
71
+ SubSystem="2"
72
+ TargetMachine="1"
73
+ />
74
+ <Tool
75
+ Name="VCALinkTool"
76
+ />
77
+ <Tool
78
+ Name="VCManifestTool"
79
+ />
80
+ <Tool
81
+ Name="VCXDCMakeTool"
82
+ />
83
+ <Tool
84
+ Name="VCBscMakeTool"
85
+ />
86
+ <Tool
87
+ Name="VCFxCopTool"
88
+ />
89
+ <Tool
90
+ Name="VCAppVerifierTool"
91
+ />
92
+ <Tool
93
+ Name="VCWebDeploymentTool"
94
+ />
95
+ <Tool
96
+ Name="VCPostBuildEventTool"
97
+ />
98
+ </Configuration>
99
+ <Configuration
100
+ Name="Debug|x64"
101
+ OutputDirectory="..\$(PlatformName)\$(ConfigurationName)\dll"
102
+ IntermediateDirectory="..\$(PlatformName)\$(ConfigurationName)\dll\libusb-1.0"
103
+ ConfigurationType="2"
104
+ CharacterSet="1"
105
+ >
106
+ <Tool
107
+ Name="VCPreBuildEventTool"
108
+ />
109
+ <Tool
110
+ Name="VCCustomBuildTool"
111
+ />
112
+ <Tool
113
+ Name="VCXMLDataGeneratorTool"
114
+ />
115
+ <Tool
116
+ Name="VCWebServiceProxyGeneratorTool"
117
+ />
118
+ <Tool
119
+ Name="VCMIDLTool"
120
+ TargetEnvironment="3"
121
+ />
122
+ <Tool
123
+ Name="VCCLCompilerTool"
124
+ Optimization="0"
125
+ AdditionalIncludeDirectories=".;..\libusb"
126
+ PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_WARNINGS"
127
+ MinimalRebuild="true"
128
+ BasicRuntimeChecks="3"
129
+ RuntimeLibrary="3"
130
+ UsePrecompiledHeader="0"
131
+ WarningLevel="3"
132
+ Detect64BitPortabilityProblems="false"
133
+ DebugInformationFormat="3"
134
+ />
135
+ <Tool
136
+ Name="VCManagedResourceCompilerTool"
137
+ />
138
+ <Tool
139
+ Name="VCResourceCompilerTool"
140
+ />
141
+ <Tool
142
+ Name="VCPreLinkEventTool"
143
+ />
144
+ <Tool
145
+ Name="VCLinkerTool"
146
+ OutputFile="$(OutDir)\libusb-1.0.dll"
147
+ LinkIncremental="2"
148
+ ModuleDefinitionFile="..\libusb\libusb-1.0.def"
149
+ GenerateDebugInformation="true"
150
+ SubSystem="2"
151
+ TargetMachine="17"
152
+ />
153
+ <Tool
154
+ Name="VCALinkTool"
155
+ />
156
+ <Tool
157
+ Name="VCManifestTool"
158
+ />
159
+ <Tool
160
+ Name="VCXDCMakeTool"
161
+ />
162
+ <Tool
163
+ Name="VCBscMakeTool"
164
+ />
165
+ <Tool
166
+ Name="VCFxCopTool"
167
+ />
168
+ <Tool
169
+ Name="VCAppVerifierTool"
170
+ />
171
+ <Tool
172
+ Name="VCWebDeploymentTool"
173
+ />
174
+ <Tool
175
+ Name="VCPostBuildEventTool"
176
+ />
177
+ </Configuration>
178
+ <Configuration
179
+ Name="Release|Win32"
180
+ OutputDirectory="..\$(PlatformName)\$(ConfigurationName)\dll"
181
+ IntermediateDirectory="..\$(PlatformName)\$(ConfigurationName)\dll\libusb-1.0"
182
+ ConfigurationType="2"
183
+ CharacterSet="1"
184
+ WholeProgramOptimization="1"
185
+ >
186
+ <Tool
187
+ Name="VCPreBuildEventTool"
188
+ />
189
+ <Tool
190
+ Name="VCCustomBuildTool"
191
+ />
192
+ <Tool
193
+ Name="VCXMLDataGeneratorTool"
194
+ />
195
+ <Tool
196
+ Name="VCWebServiceProxyGeneratorTool"
197
+ />
198
+ <Tool
199
+ Name="VCMIDLTool"
200
+ />
201
+ <Tool
202
+ Name="VCCLCompilerTool"
203
+ AdditionalIncludeDirectories=".;..\libusb"
204
+ PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_WARNINGS"
205
+ RuntimeLibrary="2"
206
+ UsePrecompiledHeader="0"
207
+ WarningLevel="3"
208
+ Detect64BitPortabilityProblems="false"
209
+ DebugInformationFormat="3"
210
+ />
211
+ <Tool
212
+ Name="VCManagedResourceCompilerTool"
213
+ />
214
+ <Tool
215
+ Name="VCResourceCompilerTool"
216
+ />
217
+ <Tool
218
+ Name="VCPreLinkEventTool"
219
+ />
220
+ <Tool
221
+ Name="VCLinkerTool"
222
+ OutputFile="$(OutDir)\libusb-1.0.dll"
223
+ LinkIncremental="1"
224
+ ModuleDefinitionFile="..\libusb\libusb-1.0.def"
225
+ GenerateDebugInformation="true"
226
+ SubSystem="2"
227
+ OptimizeReferences="2"
228
+ EnableCOMDATFolding="2"
229
+ TargetMachine="1"
230
+ />
231
+ <Tool
232
+ Name="VCALinkTool"
233
+ />
234
+ <Tool
235
+ Name="VCManifestTool"
236
+ />
237
+ <Tool
238
+ Name="VCXDCMakeTool"
239
+ />
240
+ <Tool
241
+ Name="VCBscMakeTool"
242
+ />
243
+ <Tool
244
+ Name="VCFxCopTool"
245
+ />
246
+ <Tool
247
+ Name="VCAppVerifierTool"
248
+ />
249
+ <Tool
250
+ Name="VCWebDeploymentTool"
251
+ />
252
+ <Tool
253
+ Name="VCPostBuildEventTool"
254
+ />
255
+ </Configuration>
256
+ <Configuration
257
+ Name="Release|x64"
258
+ OutputDirectory="..\$(PlatformName)\$(ConfigurationName)\dll"
259
+ IntermediateDirectory="..\$(PlatformName)\$(ConfigurationName)\dll\libusb-1.0"
260
+ ConfigurationType="2"
261
+ CharacterSet="1"
262
+ WholeProgramOptimization="1"
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="3"
279
+ />
280
+ <Tool
281
+ Name="VCCLCompilerTool"
282
+ AdditionalIncludeDirectories=".;..\libusb"
283
+ PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_WARNINGS"
284
+ RuntimeLibrary="2"
285
+ UsePrecompiledHeader="0"
286
+ WarningLevel="3"
287
+ Detect64BitPortabilityProblems="false"
288
+ DebugInformationFormat="3"
289
+ />
290
+ <Tool
291
+ Name="VCManagedResourceCompilerTool"
292
+ />
293
+ <Tool
294
+ Name="VCResourceCompilerTool"
295
+ />
296
+ <Tool
297
+ Name="VCPreLinkEventTool"
298
+ />
299
+ <Tool
300
+ Name="VCLinkerTool"
301
+ OutputFile="$(OutDir)\libusb-1.0.dll"
302
+ LinkIncremental="1"
303
+ ModuleDefinitionFile="..\libusb\libusb-1.0.def"
304
+ GenerateDebugInformation="true"
305
+ SubSystem="2"
306
+ OptimizeReferences="2"
307
+ EnableCOMDATFolding="2"
308
+ TargetMachine="17"
309
+ />
310
+ <Tool
311
+ Name="VCALinkTool"
312
+ />
313
+ <Tool
314
+ Name="VCManifestTool"
315
+ />
316
+ <Tool
317
+ Name="VCXDCMakeTool"
318
+ />
319
+ <Tool
320
+ Name="VCBscMakeTool"
321
+ />
322
+ <Tool
323
+ Name="VCFxCopTool"
324
+ />
325
+ <Tool
326
+ Name="VCAppVerifierTool"
327
+ />
328
+ <Tool
329
+ Name="VCWebDeploymentTool"
330
+ />
331
+ <Tool
332
+ Name="VCPostBuildEventTool"
333
+ />
334
+ </Configuration>
335
+ </Configurations>
336
+ <References>
337
+ </References>
338
+ <Files>
339
+ <Filter
340
+ Name="Source Files"
341
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
342
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
343
+ >
344
+ <File
345
+ RelativePath="..\libusb\core.c"
346
+ >
347
+ </File>
348
+ <File
349
+ RelativePath="..\libusb\descriptor.c"
350
+ >
351
+ </File>
352
+ <File
353
+ RelativePath="..\libusb\hotplug.c"
354
+ >
355
+ </File>
356
+ <File
357
+ RelativePath="..\libusb\io.c"
358
+ >
359
+ </File>
360
+ <File
361
+ RelativePath="..\libusb\os\poll_windows.c"
362
+ >
363
+ </File>
364
+ <File
365
+ RelativePath="..\libusb\strerror.c"
366
+ >
367
+ </File>
368
+ <File
369
+ RelativePath="..\libusb\sync.c"
370
+ >
371
+ </File>
372
+ <File
373
+ RelativePath="..\libusb\os\threads_windows.c"
374
+ >
375
+ </File>
376
+ <File
377
+ RelativePath="..\libusb\os\windows_usb.c"
378
+ >
379
+ </File>
380
+ </Filter>
381
+ <Filter
382
+ Name="Header Files"
383
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
384
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
385
+ >
386
+ <File
387
+ RelativePath=".\config.h"
388
+ >
389
+ </File>
390
+ <File
391
+ RelativePath="..\libusb\hotplug.h"
392
+ >
393
+ </File>
394
+ <File
395
+ RelativePath="..\libusb\libusb.h"
396
+ >
397
+ </File>
398
+ <File
399
+ RelativePath="..\libusb\libusbi.h"
400
+ >
401
+ </File>
402
+ <File
403
+ RelativePath="..\libusb\os\poll_windows.h"
404
+ >
405
+ </File>
406
+ <File
407
+ RelativePath="..\libusb\os\threads_windows.h"
408
+ >
409
+ </File>
410
+ <File
411
+ RelativePath="..\libusb\os\windows_usb.h"
412
+ >
413
+ </File>
414
+ <File
415
+ RelativePath="..\libusb\os\windows_common.h"
416
+ >
417
+ </File>
418
+ </Filter>
419
+ <Filter
420
+ Name="Resource Files"
421
+ Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
422
+ UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
423
+ >
424
+ <File
425
+ RelativePath="..\libusb\libusb-1.0.def"
426
+ >
427
+ </File>
428
+ <File
429
+ RelativePath="..\libusb\libusb-1.0.rc"
430
+ >
431
+ </File>
432
+ </Filter>
433
+ </Files>
434
+ <Globals>
435
+ </Globals>
436
+ </VisualStudioProject>