usb 2.12.0 → 2.13.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.
- package/CHANGELOG.md +14 -1
- package/README.md +1 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/usb/bindings.js +1 -1
- package/dist/usb/bindings.js.map +1 -1
- package/dist/usb/capability.js.map +1 -1
- package/dist/usb/device.js.map +1 -1
- package/dist/usb/endpoint.d.ts +1 -0
- package/dist/usb/endpoint.js +2 -2
- package/dist/usb/endpoint.js.map +1 -1
- package/dist/usb/index.js.map +1 -1
- package/dist/usb/interface.js +2 -2
- package/dist/usb/interface.js.map +1 -1
- package/dist/webusb/index.d.ts +2 -2
- package/dist/webusb/index.js.map +1 -1
- package/dist/webusb/webusb-device.js +10 -10
- package/dist/webusb/webusb-device.js.map +1 -1
- package/libusb/.codespellrc +3 -0
- package/libusb/.private/appveyor_build.sh +5 -1
- package/libusb/.private/ci-build.sh +26 -1
- package/libusb/.private/ci-container-build.sh +2 -5
- package/libusb/.private/wbs.txt +5 -8
- package/libusb/AUTHORS +22 -0
- package/libusb/ChangeLog +19 -2
- package/libusb/HACKING +25 -0
- package/libusb/INSTALL_WIN.txt +11 -10
- package/libusb/NEWS +2 -2
- package/libusb/README +3 -2
- package/libusb/README.git +1 -1
- package/libusb/Xcode/common.xcconfig +8 -1
- package/libusb/Xcode/config.h +0 -6
- package/libusb/Xcode/debug.xcconfig +4 -1
- package/libusb/Xcode/libusb.xcconfig +1 -1
- package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +60 -30
- package/libusb/Xcode/libusb_debug.xcconfig +1 -1
- package/libusb/Xcode/libusb_release.xcconfig +1 -1
- package/libusb/Xcode/release.xcconfig +1 -1
- package/libusb/appveyor.yml +33 -9
- package/libusb/configure.ac +68 -37
- package/libusb/examples/dpfp.c +2 -2
- package/libusb/examples/fxload.c +2 -2
- package/libusb/examples/hotplugtest.c +28 -13
- package/libusb/examples/listdevs.c +1 -1
- package/libusb/examples/sam3u_benchmark.c +1 -1
- package/libusb/examples/testlibusb.c +1 -1
- package/libusb/examples/xusb.c +74 -19
- package/libusb/libusb/Makefile.am +11 -1
- package/libusb/libusb/core.c +364 -186
- package/libusb/libusb/descriptor.c +276 -16
- package/libusb/libusb/hotplug.c +5 -4
- package/libusb/libusb/io.c +72 -61
- package/libusb/libusb/libusb-1.0.def +14 -1
- package/libusb/libusb/libusb.h +245 -76
- package/libusb/libusb/libusbi.h +35 -13
- package/libusb/libusb/os/darwin_usb.c +542 -279
- package/libusb/libusb/os/darwin_usb.h +44 -115
- package/libusb/libusb/os/emscripten_webusb.cpp +870 -0
- package/libusb/libusb/os/events_posix.c +40 -0
- package/libusb/libusb/os/events_posix.h +3 -0
- package/libusb/libusb/os/linux_usbfs.c +27 -16
- package/libusb/libusb/os/netbsd_usb.c +36 -36
- package/libusb/libusb/os/openbsd_usb.c +34 -34
- package/libusb/libusb/os/sunos_usb.c +25 -15
- package/libusb/libusb/os/threads_posix.c +1 -5
- package/libusb/libusb/os/windows_common.c +13 -5
- package/libusb/libusb/os/windows_common.h +8 -0
- package/libusb/libusb/os/windows_winusb.c +366 -174
- package/libusb/libusb/os/windows_winusb.h +13 -9
- package/libusb/libusb/strerror.c +5 -5
- package/libusb/libusb/sync.c +24 -19
- package/libusb/libusb/version.h +1 -1
- package/libusb/libusb/version_nano.h +1 -1
- package/libusb/msvc/Base.props +60 -0
- package/libusb/msvc/Configuration.Application.props +7 -0
- package/libusb/msvc/Configuration.Base.props +47 -0
- package/libusb/msvc/Configuration.DynamicLibrary.props +21 -0
- package/libusb/msvc/Configuration.StaticLibrary.props +7 -0
- package/libusb/msvc/ProjectConfigurations.Base.props +69 -0
- package/libusb/msvc/build_all.ps1 +17 -0
- package/libusb/msvc/config.h +2 -2
- package/libusb/msvc/dpfp.vcxproj +33 -0
- package/libusb/msvc/dpfp_threaded.vcxproj +38 -0
- package/libusb/msvc/fxload.vcxproj +46 -0
- package/libusb/msvc/getopt.vcxproj +33 -0
- package/libusb/msvc/hotplugtest.vcxproj +32 -0
- package/libusb/msvc/init_context.vcxproj +35 -0
- package/libusb/msvc/libusb.sln +542 -0
- package/libusb/msvc/libusb_dll.vcxproj +61 -0
- package/libusb/msvc/libusb_static.vcxproj +49 -0
- package/libusb/msvc/listdevs.vcxproj +32 -0
- package/libusb/msvc/sam3u_benchmark.vcxproj +33 -0
- package/libusb/msvc/set_option.vcxproj +35 -0
- package/libusb/msvc/stress.vcxproj +35 -0
- package/libusb/msvc/stress_mt.vcxproj +33 -0
- package/libusb/msvc/testlibusb.vcxproj +32 -0
- package/libusb/msvc/xusb.vcxproj +38 -0
- package/libusb/tests/Makefile.am +25 -3
- package/libusb/tests/init_context.c +153 -0
- package/libusb/tests/macos.c +130 -0
- package/libusb/tests/set_option.c +253 -0
- package/libusb/tests/stress.c +17 -14
- package/libusb/tests/stress_mt.c +265 -0
- package/libusb/tests/testlib.c +1 -1
- package/libusb/tests/umockdev.c +9 -9
- package/libusb/tests/webusb-test-shim/index.js +12 -0
- package/libusb/tests/webusb-test-shim/package-lock.json +50 -0
- package/libusb/tests/webusb-test-shim/package.json +10 -0
- package/package.json +7 -7
- package/prebuilds/android-arm/node.napi.armv7.node +0 -0
- package/prebuilds/android-arm64/node.napi.armv8.node +0 -0
- package/prebuilds/darwin-x64+arm64/node.napi.node +0 -0
- package/prebuilds/linux-arm/node.napi.armv6.node +0 -0
- package/prebuilds/linux-arm/node.napi.armv7.node +0 -0
- package/prebuilds/linux-arm64/node.napi.armv8.node +0 -0
- package/prebuilds/linux-ia32/node.napi.node +0 -0
- package/prebuilds/linux-x64/node.napi.glibc.node +0 -0
- package/prebuilds/linux-x64/node.napi.musl.node +0 -0
- package/prebuilds/win32-arm64/node.napi.node +0 -0
- package/prebuilds/win32-ia32/node.napi.node +0 -0
- package/prebuilds/win32-x64/node.napi.node +0 -0
- package/src/device.cc +15 -5
- package/libusb/msvc/dpfp_2013.vcxproj +0 -87
- package/libusb/msvc/dpfp_2013.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_2015.vcxproj +0 -87
- package/libusb/msvc/dpfp_2015.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_2017.vcxproj +0 -106
- package/libusb/msvc/dpfp_2017.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_2019.vcxproj +0 -106
- package/libusb/msvc/dpfp_2019.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_threaded_2013.vcxproj +0 -87
- package/libusb/msvc/dpfp_threaded_2013.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_threaded_2015.vcxproj +0 -87
- package/libusb/msvc/dpfp_threaded_2015.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_threaded_2017.vcxproj +0 -106
- package/libusb/msvc/dpfp_threaded_2017.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_threaded_2019.vcxproj +0 -106
- package/libusb/msvc/dpfp_threaded_2019.vcxproj.filters +0 -26
- package/libusb/msvc/fxload_2013.vcxproj +0 -94
- package/libusb/msvc/fxload_2013.vcxproj.filters +0 -35
- package/libusb/msvc/fxload_2015.vcxproj +0 -94
- package/libusb/msvc/fxload_2015.vcxproj.filters +0 -35
- package/libusb/msvc/fxload_2017.vcxproj +0 -113
- package/libusb/msvc/fxload_2017.vcxproj.filters +0 -35
- package/libusb/msvc/fxload_2019.vcxproj +0 -113
- package/libusb/msvc/fxload_2019.vcxproj.filters +0 -35
- package/libusb/msvc/getopt_2013.vcxproj +0 -72
- package/libusb/msvc/getopt_2013.vcxproj.filters +0 -26
- package/libusb/msvc/getopt_2015.vcxproj +0 -73
- package/libusb/msvc/getopt_2015.vcxproj.filters +0 -26
- package/libusb/msvc/getopt_2017.vcxproj +0 -92
- package/libusb/msvc/getopt_2017.vcxproj.filters +0 -26
- package/libusb/msvc/getopt_2019.vcxproj +0 -92
- package/libusb/msvc/getopt_2019.vcxproj.filters +0 -26
- package/libusb/msvc/hotplugtest_2013.vcxproj +0 -86
- package/libusb/msvc/hotplugtest_2013.vcxproj.filters +0 -23
- package/libusb/msvc/hotplugtest_2015.vcxproj +0 -86
- package/libusb/msvc/hotplugtest_2015.vcxproj.filters +0 -23
- package/libusb/msvc/hotplugtest_2017.vcxproj +0 -105
- package/libusb/msvc/hotplugtest_2017.vcxproj.filters +0 -23
- package/libusb/msvc/hotplugtest_2019.vcxproj +0 -105
- package/libusb/msvc/hotplugtest_2019.vcxproj.filters +0 -23
- package/libusb/msvc/libusb_2013.sln +0 -137
- package/libusb/msvc/libusb_2015.sln +0 -137
- package/libusb/msvc/libusb_2017.sln +0 -240
- package/libusb/msvc/libusb_2019.sln +0 -240
- package/libusb/msvc/libusb_dll_2013.vcxproj +0 -104
- package/libusb/msvc/libusb_dll_2013.vcxproj.filters +0 -94
- package/libusb/msvc/libusb_dll_2015.vcxproj +0 -105
- package/libusb/msvc/libusb_dll_2015.vcxproj.filters +0 -94
- package/libusb/msvc/libusb_dll_2017.vcxproj +0 -124
- package/libusb/msvc/libusb_dll_2017.vcxproj.filters +0 -94
- package/libusb/msvc/libusb_dll_2019.vcxproj +0 -124
- package/libusb/msvc/libusb_dll_2019.vcxproj.filters +0 -94
- package/libusb/msvc/libusb_static_2013.vcxproj +0 -94
- package/libusb/msvc/libusb_static_2013.vcxproj.filters +0 -80
- package/libusb/msvc/libusb_static_2015.vcxproj +0 -95
- package/libusb/msvc/libusb_static_2015.vcxproj.filters +0 -80
- package/libusb/msvc/libusb_static_2017.vcxproj +0 -114
- package/libusb/msvc/libusb_static_2017.vcxproj.filters +0 -80
- package/libusb/msvc/libusb_static_2019.vcxproj +0 -114
- package/libusb/msvc/libusb_static_2019.vcxproj.filters +0 -80
- package/libusb/msvc/listdevs_2013.vcxproj +0 -86
- package/libusb/msvc/listdevs_2013.vcxproj.filters +0 -23
- package/libusb/msvc/listdevs_2015.vcxproj +0 -86
- package/libusb/msvc/listdevs_2015.vcxproj.filters +0 -23
- package/libusb/msvc/listdevs_2017.vcxproj +0 -105
- package/libusb/msvc/listdevs_2017.vcxproj.filters +0 -23
- package/libusb/msvc/listdevs_2019.vcxproj +0 -105
- package/libusb/msvc/listdevs_2019.vcxproj.filters +0 -23
- package/libusb/msvc/sam3u_benchmark_2013.vcxproj +0 -87
- package/libusb/msvc/sam3u_benchmark_2013.vcxproj.filters +0 -26
- package/libusb/msvc/sam3u_benchmark_2015.vcxproj +0 -87
- package/libusb/msvc/sam3u_benchmark_2015.vcxproj.filters +0 -26
- package/libusb/msvc/sam3u_benchmark_2017.vcxproj +0 -106
- package/libusb/msvc/sam3u_benchmark_2017.vcxproj.filters +0 -26
- package/libusb/msvc/sam3u_benchmark_2019.vcxproj +0 -106
- package/libusb/msvc/sam3u_benchmark_2019.vcxproj.filters +0 -26
- package/libusb/msvc/stress_2013.vcxproj +0 -89
- package/libusb/msvc/stress_2013.vcxproj.filters +0 -32
- package/libusb/msvc/stress_2015.vcxproj +0 -89
- package/libusb/msvc/stress_2015.vcxproj.filters +0 -32
- package/libusb/msvc/stress_2017.vcxproj +0 -108
- package/libusb/msvc/stress_2017.vcxproj.filters +0 -32
- package/libusb/msvc/stress_2019.vcxproj +0 -108
- package/libusb/msvc/stress_2019.vcxproj.filters +0 -32
- package/libusb/msvc/testlibusb_2013.vcxproj +0 -86
- package/libusb/msvc/testlibusb_2013.vcxproj.filters +0 -23
- package/libusb/msvc/testlibusb_2015.vcxproj +0 -86
- package/libusb/msvc/testlibusb_2015.vcxproj.filters +0 -23
- package/libusb/msvc/testlibusb_2017.vcxproj +0 -105
- package/libusb/msvc/testlibusb_2017.vcxproj.filters +0 -23
- package/libusb/msvc/testlibusb_2019.vcxproj +0 -105
- package/libusb/msvc/testlibusb_2019.vcxproj.filters +0 -23
- package/libusb/msvc/xusb_2013.vcxproj +0 -86
- package/libusb/msvc/xusb_2013.vcxproj.filters +0 -23
- package/libusb/msvc/xusb_2015.vcxproj +0 -86
- package/libusb/msvc/xusb_2015.vcxproj.filters +0 -23
- package/libusb/msvc/xusb_2017.vcxproj +0 -105
- package/libusb/msvc/xusb_2017.vcxproj.filters +0 -23
- package/libusb/msvc/xusb_2019.vcxproj +0 -105
- package/libusb/msvc/xusb_2019.vcxproj.filters +0 -23
- package/prebuilds/android-arm/usb.armv7.node +0 -0
- package/prebuilds/android-arm64/usb.armv8.node +0 -0
- package/prebuilds/darwin-x64+arm64/usb.node +0 -0
- package/prebuilds/linux-arm/usb.armv6.node +0 -0
- package/prebuilds/linux-arm/usb.armv7.node +0 -0
- package/prebuilds/linux-arm64/usb.armv8.node +0 -0
- package/prebuilds/linux-ia32/usb.node +0 -0
- package/prebuilds/linux-x64/usb.glibc.node +0 -0
- package/prebuilds/linux-x64/usb.musl.node +0 -0
- package/prebuilds/win32-arm64/usb.node +0 -0
- package/prebuilds/win32-ia32/usb.node +0 -0
- package/prebuilds/win32-x64/usb.node +0 -0
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup Label="ProjectConfigurations">
|
|
4
|
-
<ProjectConfiguration Include="Debug|ARM">
|
|
5
|
-
<Configuration>Debug</Configuration>
|
|
6
|
-
<Platform>ARM</Platform>
|
|
7
|
-
</ProjectConfiguration>
|
|
8
|
-
<ProjectConfiguration Include="Debug|ARM64">
|
|
9
|
-
<Configuration>Debug</Configuration>
|
|
10
|
-
<Platform>ARM64</Platform>
|
|
11
|
-
</ProjectConfiguration>
|
|
12
|
-
<ProjectConfiguration Include="Debug|Win32">
|
|
13
|
-
<Configuration>Debug</Configuration>
|
|
14
|
-
<Platform>Win32</Platform>
|
|
15
|
-
</ProjectConfiguration>
|
|
16
|
-
<ProjectConfiguration Include="Debug|x64">
|
|
17
|
-
<Configuration>Debug</Configuration>
|
|
18
|
-
<Platform>x64</Platform>
|
|
19
|
-
</ProjectConfiguration>
|
|
20
|
-
<ProjectConfiguration Include="Release|ARM">
|
|
21
|
-
<Configuration>Release</Configuration>
|
|
22
|
-
<Platform>ARM</Platform>
|
|
23
|
-
</ProjectConfiguration>
|
|
24
|
-
<ProjectConfiguration Include="Release|ARM64">
|
|
25
|
-
<Configuration>Release</Configuration>
|
|
26
|
-
<Platform>ARM64</Platform>
|
|
27
|
-
</ProjectConfiguration>
|
|
28
|
-
<ProjectConfiguration Include="Release|Win32">
|
|
29
|
-
<Configuration>Release</Configuration>
|
|
30
|
-
<Platform>Win32</Platform>
|
|
31
|
-
</ProjectConfiguration>
|
|
32
|
-
<ProjectConfiguration Include="Release|x64">
|
|
33
|
-
<Configuration>Release</Configuration>
|
|
34
|
-
<Platform>x64</Platform>
|
|
35
|
-
</ProjectConfiguration>
|
|
36
|
-
</ItemGroup>
|
|
37
|
-
<PropertyGroup Label="Globals">
|
|
38
|
-
<ProjectName>testlibusb</ProjectName>
|
|
39
|
-
<ProjectGuid>{70828935-325B-4749-B381-0E55EF31AEE8}</ProjectGuid>
|
|
40
|
-
<RootNamespace>examples</RootNamespace>
|
|
41
|
-
<Keyword>Win32Proj</Keyword>
|
|
42
|
-
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
|
|
43
|
-
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
|
|
44
|
-
<WindowsTargetPlatformVersion Condition="'$(Platform)'=='ARM' Or '$(Platform)'=='ARM64'">10.0.17763.0</WindowsTargetPlatformVersion>
|
|
45
|
-
</PropertyGroup>
|
|
46
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
47
|
-
<PropertyGroup Label="Configuration">
|
|
48
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
49
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
50
|
-
<PlatformToolset>v141</PlatformToolset>
|
|
51
|
-
<WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
|
|
52
|
-
</PropertyGroup>
|
|
53
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
54
|
-
<ImportGroup Label="ExtensionSettings">
|
|
55
|
-
</ImportGroup>
|
|
56
|
-
<ImportGroup Label="PropertySheets">
|
|
57
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
58
|
-
</ImportGroup>
|
|
59
|
-
<PropertyGroup Label="UserMacros" />
|
|
60
|
-
<PropertyGroup>
|
|
61
|
-
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
62
|
-
<IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\$(ProjectName)\</IntDir>
|
|
63
|
-
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\</OutDir>
|
|
64
|
-
</PropertyGroup>
|
|
65
|
-
<ItemDefinitionGroup>
|
|
66
|
-
<ClCompile>
|
|
67
|
-
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
|
|
68
|
-
<AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
69
|
-
<PreprocessorDefinitions>_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
70
|
-
<WarningLevel>Level3</WarningLevel>
|
|
71
|
-
</ClCompile>
|
|
72
|
-
<ClCompile Condition="'$(Configuration)'=='Debug'">
|
|
73
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
74
|
-
<Optimization>Disabled</Optimization>
|
|
75
|
-
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
76
|
-
</ClCompile>
|
|
77
|
-
<ClCompile Condition="'$(Configuration)'=='Release'">
|
|
78
|
-
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
79
|
-
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
80
|
-
</ClCompile>
|
|
81
|
-
<Link>
|
|
82
|
-
<ProgramDatabaseFile>$(TargetDir)$(ProjectName).pdb</ProgramDatabaseFile>
|
|
83
|
-
<SubSystem>Console</SubSystem>
|
|
84
|
-
<AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
85
|
-
</Link>
|
|
86
|
-
<Link Condition="'$(Configuration)'=='Debug'">
|
|
87
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
88
|
-
</Link>
|
|
89
|
-
</ItemDefinitionGroup>
|
|
90
|
-
<ItemGroup>
|
|
91
|
-
<ClCompile Include="..\examples\testlibusb.c" />
|
|
92
|
-
</ItemGroup>
|
|
93
|
-
<ItemGroup>
|
|
94
|
-
<ClInclude Include="..\libusb\libusb.h" />
|
|
95
|
-
</ItemGroup>
|
|
96
|
-
<ItemGroup>
|
|
97
|
-
<ProjectReference Include=".\libusb_static_2017.vcxproj">
|
|
98
|
-
<Project>{349ee8f9-7d25-4909-aaf5-ff3fade72187}</Project>
|
|
99
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
100
|
-
</ProjectReference>
|
|
101
|
-
</ItemGroup>
|
|
102
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
103
|
-
<ImportGroup Label="ExtensionTargets">
|
|
104
|
-
</ImportGroup>
|
|
105
|
-
</Project>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup>
|
|
4
|
-
<Filter Include="Source Files">
|
|
5
|
-
<UniqueIdentifier>{4a89b408-009b-41e4-bb05-78f07a7c7f82}</UniqueIdentifier>
|
|
6
|
-
<Extensions>c</Extensions>
|
|
7
|
-
</Filter>
|
|
8
|
-
<Filter Include="Header Files">
|
|
9
|
-
<UniqueIdentifier>{9dc8bfc2-c1d0-41d9-9fd2-858137d5d7c7}</UniqueIdentifier>
|
|
10
|
-
<Extensions>h</Extensions>
|
|
11
|
-
</Filter>
|
|
12
|
-
</ItemGroup>
|
|
13
|
-
<ItemGroup>
|
|
14
|
-
<ClInclude Include="..\libusb\libusb.h">
|
|
15
|
-
<Filter>Header Files</Filter>
|
|
16
|
-
</ClInclude>
|
|
17
|
-
</ItemGroup>
|
|
18
|
-
<ItemGroup>
|
|
19
|
-
<ClCompile Include="..\examples\testlibusb.c">
|
|
20
|
-
<Filter>Source Files</Filter>
|
|
21
|
-
</ClCompile>
|
|
22
|
-
</ItemGroup>
|
|
23
|
-
</Project>
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup Label="ProjectConfigurations">
|
|
4
|
-
<ProjectConfiguration Include="Debug|ARM">
|
|
5
|
-
<Configuration>Debug</Configuration>
|
|
6
|
-
<Platform>ARM</Platform>
|
|
7
|
-
</ProjectConfiguration>
|
|
8
|
-
<ProjectConfiguration Include="Debug|ARM64">
|
|
9
|
-
<Configuration>Debug</Configuration>
|
|
10
|
-
<Platform>ARM64</Platform>
|
|
11
|
-
</ProjectConfiguration>
|
|
12
|
-
<ProjectConfiguration Include="Debug|Win32">
|
|
13
|
-
<Configuration>Debug</Configuration>
|
|
14
|
-
<Platform>Win32</Platform>
|
|
15
|
-
</ProjectConfiguration>
|
|
16
|
-
<ProjectConfiguration Include="Debug|x64">
|
|
17
|
-
<Configuration>Debug</Configuration>
|
|
18
|
-
<Platform>x64</Platform>
|
|
19
|
-
</ProjectConfiguration>
|
|
20
|
-
<ProjectConfiguration Include="Release|ARM">
|
|
21
|
-
<Configuration>Release</Configuration>
|
|
22
|
-
<Platform>ARM</Platform>
|
|
23
|
-
</ProjectConfiguration>
|
|
24
|
-
<ProjectConfiguration Include="Release|ARM64">
|
|
25
|
-
<Configuration>Release</Configuration>
|
|
26
|
-
<Platform>ARM64</Platform>
|
|
27
|
-
</ProjectConfiguration>
|
|
28
|
-
<ProjectConfiguration Include="Release|Win32">
|
|
29
|
-
<Configuration>Release</Configuration>
|
|
30
|
-
<Platform>Win32</Platform>
|
|
31
|
-
</ProjectConfiguration>
|
|
32
|
-
<ProjectConfiguration Include="Release|x64">
|
|
33
|
-
<Configuration>Release</Configuration>
|
|
34
|
-
<Platform>x64</Platform>
|
|
35
|
-
</ProjectConfiguration>
|
|
36
|
-
</ItemGroup>
|
|
37
|
-
<PropertyGroup Label="Globals">
|
|
38
|
-
<ProjectName>testlibusb</ProjectName>
|
|
39
|
-
<ProjectGuid>{70828935-325B-4749-B381-0E55EF31AEE8}</ProjectGuid>
|
|
40
|
-
<RootNamespace>examples</RootNamespace>
|
|
41
|
-
<Keyword>Win32Proj</Keyword>
|
|
42
|
-
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
|
|
43
|
-
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
|
|
44
|
-
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
|
45
|
-
</PropertyGroup>
|
|
46
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
47
|
-
<PropertyGroup Label="Configuration">
|
|
48
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
49
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
50
|
-
<PlatformToolset>v142</PlatformToolset>
|
|
51
|
-
<WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
|
|
52
|
-
</PropertyGroup>
|
|
53
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
54
|
-
<ImportGroup Label="ExtensionSettings">
|
|
55
|
-
</ImportGroup>
|
|
56
|
-
<ImportGroup Label="PropertySheets">
|
|
57
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
58
|
-
</ImportGroup>
|
|
59
|
-
<PropertyGroup Label="UserMacros" />
|
|
60
|
-
<PropertyGroup>
|
|
61
|
-
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
62
|
-
<IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\$(ProjectName)\</IntDir>
|
|
63
|
-
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\</OutDir>
|
|
64
|
-
</PropertyGroup>
|
|
65
|
-
<ItemDefinitionGroup>
|
|
66
|
-
<ClCompile>
|
|
67
|
-
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
|
|
68
|
-
<AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
69
|
-
<PreprocessorDefinitions>_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
70
|
-
<WarningLevel>Level3</WarningLevel>
|
|
71
|
-
</ClCompile>
|
|
72
|
-
<ClCompile Condition="'$(Configuration)'=='Debug'">
|
|
73
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
74
|
-
<Optimization>Disabled</Optimization>
|
|
75
|
-
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
76
|
-
</ClCompile>
|
|
77
|
-
<ClCompile Condition="'$(Configuration)'=='Release'">
|
|
78
|
-
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
79
|
-
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
80
|
-
</ClCompile>
|
|
81
|
-
<Link>
|
|
82
|
-
<ProgramDatabaseFile>$(TargetDir)$(ProjectName).pdb</ProgramDatabaseFile>
|
|
83
|
-
<SubSystem>Console</SubSystem>
|
|
84
|
-
<AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
85
|
-
</Link>
|
|
86
|
-
<Link Condition="'$(Configuration)'=='Debug'">
|
|
87
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
88
|
-
</Link>
|
|
89
|
-
</ItemDefinitionGroup>
|
|
90
|
-
<ItemGroup>
|
|
91
|
-
<ClCompile Include="..\examples\testlibusb.c" />
|
|
92
|
-
</ItemGroup>
|
|
93
|
-
<ItemGroup>
|
|
94
|
-
<ClInclude Include="..\libusb\libusb.h" />
|
|
95
|
-
</ItemGroup>
|
|
96
|
-
<ItemGroup>
|
|
97
|
-
<ProjectReference Include=".\libusb_static_2019.vcxproj">
|
|
98
|
-
<Project>{349ee8f9-7d25-4909-aaf5-ff3fade72187}</Project>
|
|
99
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
100
|
-
</ProjectReference>
|
|
101
|
-
</ItemGroup>
|
|
102
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
103
|
-
<ImportGroup Label="ExtensionTargets">
|
|
104
|
-
</ImportGroup>
|
|
105
|
-
</Project>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup>
|
|
4
|
-
<Filter Include="Source Files">
|
|
5
|
-
<UniqueIdentifier>{4a89b408-009b-41e4-bb05-78f07a7c7f82}</UniqueIdentifier>
|
|
6
|
-
<Extensions>c</Extensions>
|
|
7
|
-
</Filter>
|
|
8
|
-
<Filter Include="Header Files">
|
|
9
|
-
<UniqueIdentifier>{9dc8bfc2-c1d0-41d9-9fd2-858137d5d7c7}</UniqueIdentifier>
|
|
10
|
-
<Extensions>h</Extensions>
|
|
11
|
-
</Filter>
|
|
12
|
-
</ItemGroup>
|
|
13
|
-
<ItemGroup>
|
|
14
|
-
<ClInclude Include="..\libusb\libusb.h">
|
|
15
|
-
<Filter>Header Files</Filter>
|
|
16
|
-
</ClInclude>
|
|
17
|
-
</ItemGroup>
|
|
18
|
-
<ItemGroup>
|
|
19
|
-
<ClCompile Include="..\examples\testlibusb.c">
|
|
20
|
-
<Filter>Source Files</Filter>
|
|
21
|
-
</ClCompile>
|
|
22
|
-
</ItemGroup>
|
|
23
|
-
</Project>
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup Label="ProjectConfigurations">
|
|
4
|
-
<ProjectConfiguration Include="Debug|Win32">
|
|
5
|
-
<Configuration>Debug</Configuration>
|
|
6
|
-
<Platform>Win32</Platform>
|
|
7
|
-
</ProjectConfiguration>
|
|
8
|
-
<ProjectConfiguration Include="Debug|x64">
|
|
9
|
-
<Configuration>Debug</Configuration>
|
|
10
|
-
<Platform>x64</Platform>
|
|
11
|
-
</ProjectConfiguration>
|
|
12
|
-
<ProjectConfiguration Include="Release|Win32">
|
|
13
|
-
<Configuration>Release</Configuration>
|
|
14
|
-
<Platform>Win32</Platform>
|
|
15
|
-
</ProjectConfiguration>
|
|
16
|
-
<ProjectConfiguration Include="Release|x64">
|
|
17
|
-
<Configuration>Release</Configuration>
|
|
18
|
-
<Platform>x64</Platform>
|
|
19
|
-
</ProjectConfiguration>
|
|
20
|
-
</ItemGroup>
|
|
21
|
-
<PropertyGroup Label="Globals">
|
|
22
|
-
<ProjectName>xusb</ProjectName>
|
|
23
|
-
<ProjectGuid>{3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}</ProjectGuid>
|
|
24
|
-
<RootNamespace>examples</RootNamespace>
|
|
25
|
-
<Keyword>Win32Proj</Keyword>
|
|
26
|
-
</PropertyGroup>
|
|
27
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
28
|
-
<PropertyGroup Label="Configuration">
|
|
29
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
30
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
31
|
-
<PlatformToolset>v120</PlatformToolset>
|
|
32
|
-
<WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
|
|
33
|
-
</PropertyGroup>
|
|
34
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
35
|
-
<ImportGroup Label="ExtensionSettings">
|
|
36
|
-
</ImportGroup>
|
|
37
|
-
<ImportGroup Label="PropertySheets">
|
|
38
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
39
|
-
</ImportGroup>
|
|
40
|
-
<PropertyGroup Label="UserMacros" />
|
|
41
|
-
<PropertyGroup>
|
|
42
|
-
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
43
|
-
<IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\$(ProjectName)\</IntDir>
|
|
44
|
-
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\</OutDir>
|
|
45
|
-
</PropertyGroup>
|
|
46
|
-
<ItemDefinitionGroup>
|
|
47
|
-
<ClCompile>
|
|
48
|
-
<AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
49
|
-
<PreprocessorDefinitions>_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
50
|
-
<WarningLevel>Level3</WarningLevel>
|
|
51
|
-
</ClCompile>
|
|
52
|
-
<ClCompile Condition="'$(Configuration)'=='Debug'">
|
|
53
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
54
|
-
<Optimization>Disabled</Optimization>
|
|
55
|
-
<MinimalRebuild>true</MinimalRebuild>
|
|
56
|
-
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
57
|
-
</ClCompile>
|
|
58
|
-
<ClCompile Condition="'$(Configuration)'=='Release'">
|
|
59
|
-
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
60
|
-
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
61
|
-
</ClCompile>
|
|
62
|
-
<Link>
|
|
63
|
-
<ProgramDatabaseFile>$(TargetDir)$(ProjectName).pdb</ProgramDatabaseFile>
|
|
64
|
-
<SubSystem>Console</SubSystem>
|
|
65
|
-
<AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
66
|
-
</Link>
|
|
67
|
-
<Link Condition="'$(Configuration)'=='Debug'">
|
|
68
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
69
|
-
</Link>
|
|
70
|
-
</ItemDefinitionGroup>
|
|
71
|
-
<ItemGroup>
|
|
72
|
-
<ClCompile Include="..\examples\xusb.c" />
|
|
73
|
-
</ItemGroup>
|
|
74
|
-
<ItemGroup>
|
|
75
|
-
<ClInclude Include="..\libusb\libusb.h" />
|
|
76
|
-
</ItemGroup>
|
|
77
|
-
<ItemGroup>
|
|
78
|
-
<ProjectReference Include=".\libusb_static_2013.vcxproj">
|
|
79
|
-
<Project>{349ee8f9-7d25-4909-aaf5-ff3fade72187}</Project>
|
|
80
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
81
|
-
</ProjectReference>
|
|
82
|
-
</ItemGroup>
|
|
83
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
84
|
-
<ImportGroup Label="ExtensionTargets">
|
|
85
|
-
</ImportGroup>
|
|
86
|
-
</Project>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup>
|
|
4
|
-
<Filter Include="Source Files">
|
|
5
|
-
<UniqueIdentifier>{4bdcefa9-8c79-431b-965b-15b234737380}</UniqueIdentifier>
|
|
6
|
-
<Extensions>c</Extensions>
|
|
7
|
-
</Filter>
|
|
8
|
-
<Filter Include="Header Files">
|
|
9
|
-
<UniqueIdentifier>{f81e24cd-e12b-4324-ada3-accbab00ef08}</UniqueIdentifier>
|
|
10
|
-
<Extensions>h</Extensions>
|
|
11
|
-
</Filter>
|
|
12
|
-
</ItemGroup>
|
|
13
|
-
<ItemGroup>
|
|
14
|
-
<ClInclude Include="..\libusb\libusb.h">
|
|
15
|
-
<Filter>Header Files</Filter>
|
|
16
|
-
</ClInclude>
|
|
17
|
-
</ItemGroup>
|
|
18
|
-
<ItemGroup>
|
|
19
|
-
<ClCompile Include="..\examples\xusb.c">
|
|
20
|
-
<Filter>Source Files</Filter>
|
|
21
|
-
</ClCompile>
|
|
22
|
-
</ItemGroup>
|
|
23
|
-
</Project>
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup Label="ProjectConfigurations">
|
|
4
|
-
<ProjectConfiguration Include="Debug|Win32">
|
|
5
|
-
<Configuration>Debug</Configuration>
|
|
6
|
-
<Platform>Win32</Platform>
|
|
7
|
-
</ProjectConfiguration>
|
|
8
|
-
<ProjectConfiguration Include="Debug|x64">
|
|
9
|
-
<Configuration>Debug</Configuration>
|
|
10
|
-
<Platform>x64</Platform>
|
|
11
|
-
</ProjectConfiguration>
|
|
12
|
-
<ProjectConfiguration Include="Release|Win32">
|
|
13
|
-
<Configuration>Release</Configuration>
|
|
14
|
-
<Platform>Win32</Platform>
|
|
15
|
-
</ProjectConfiguration>
|
|
16
|
-
<ProjectConfiguration Include="Release|x64">
|
|
17
|
-
<Configuration>Release</Configuration>
|
|
18
|
-
<Platform>x64</Platform>
|
|
19
|
-
</ProjectConfiguration>
|
|
20
|
-
</ItemGroup>
|
|
21
|
-
<PropertyGroup Label="Globals">
|
|
22
|
-
<ProjectName>xusb</ProjectName>
|
|
23
|
-
<ProjectGuid>{3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}</ProjectGuid>
|
|
24
|
-
<RootNamespace>examples</RootNamespace>
|
|
25
|
-
<Keyword>Win32Proj</Keyword>
|
|
26
|
-
</PropertyGroup>
|
|
27
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
28
|
-
<PropertyGroup Label="Configuration">
|
|
29
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
30
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
31
|
-
<PlatformToolset>v140</PlatformToolset>
|
|
32
|
-
<WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
|
|
33
|
-
</PropertyGroup>
|
|
34
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
35
|
-
<ImportGroup Label="ExtensionSettings">
|
|
36
|
-
</ImportGroup>
|
|
37
|
-
<ImportGroup Label="PropertySheets">
|
|
38
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
39
|
-
</ImportGroup>
|
|
40
|
-
<PropertyGroup Label="UserMacros" />
|
|
41
|
-
<PropertyGroup>
|
|
42
|
-
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
43
|
-
<IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\$(ProjectName)\</IntDir>
|
|
44
|
-
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\</OutDir>
|
|
45
|
-
</PropertyGroup>
|
|
46
|
-
<ItemDefinitionGroup>
|
|
47
|
-
<ClCompile>
|
|
48
|
-
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
|
|
49
|
-
<AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
50
|
-
<PreprocessorDefinitions>_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
51
|
-
<WarningLevel>Level3</WarningLevel>
|
|
52
|
-
</ClCompile>
|
|
53
|
-
<ClCompile Condition="'$(Configuration)'=='Debug'">
|
|
54
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
55
|
-
<Optimization>Disabled</Optimization>
|
|
56
|
-
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
57
|
-
</ClCompile>
|
|
58
|
-
<ClCompile Condition="'$(Configuration)'=='Release'">
|
|
59
|
-
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
60
|
-
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
61
|
-
</ClCompile>
|
|
62
|
-
<Link>
|
|
63
|
-
<ProgramDatabaseFile>$(TargetDir)$(ProjectName).pdb</ProgramDatabaseFile>
|
|
64
|
-
<SubSystem>Console</SubSystem>
|
|
65
|
-
<AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
66
|
-
</Link>
|
|
67
|
-
<Link Condition="'$(Configuration)'=='Debug'">
|
|
68
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
69
|
-
</Link>
|
|
70
|
-
</ItemDefinitionGroup>
|
|
71
|
-
<ItemGroup>
|
|
72
|
-
<ClCompile Include="..\examples\xusb.c" />
|
|
73
|
-
</ItemGroup>
|
|
74
|
-
<ItemGroup>
|
|
75
|
-
<ClInclude Include="..\libusb\libusb.h" />
|
|
76
|
-
</ItemGroup>
|
|
77
|
-
<ItemGroup>
|
|
78
|
-
<ProjectReference Include=".\libusb_static_2015.vcxproj">
|
|
79
|
-
<Project>{349ee8f9-7d25-4909-aaf5-ff3fade72187}</Project>
|
|
80
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
81
|
-
</ProjectReference>
|
|
82
|
-
</ItemGroup>
|
|
83
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
84
|
-
<ImportGroup Label="ExtensionTargets">
|
|
85
|
-
</ImportGroup>
|
|
86
|
-
</Project>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup>
|
|
4
|
-
<Filter Include="Source Files">
|
|
5
|
-
<UniqueIdentifier>{4bdcefa9-8c79-431b-965b-15b234737380}</UniqueIdentifier>
|
|
6
|
-
<Extensions>c</Extensions>
|
|
7
|
-
</Filter>
|
|
8
|
-
<Filter Include="Header Files">
|
|
9
|
-
<UniqueIdentifier>{f81e24cd-e12b-4324-ada3-accbab00ef08}</UniqueIdentifier>
|
|
10
|
-
<Extensions>h</Extensions>
|
|
11
|
-
</Filter>
|
|
12
|
-
</ItemGroup>
|
|
13
|
-
<ItemGroup>
|
|
14
|
-
<ClInclude Include="..\libusb\libusb.h">
|
|
15
|
-
<Filter>Header Files</Filter>
|
|
16
|
-
</ClInclude>
|
|
17
|
-
</ItemGroup>
|
|
18
|
-
<ItemGroup>
|
|
19
|
-
<ClCompile Include="..\examples\xusb.c">
|
|
20
|
-
<Filter>Source Files</Filter>
|
|
21
|
-
</ClCompile>
|
|
22
|
-
</ItemGroup>
|
|
23
|
-
</Project>
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup Label="ProjectConfigurations">
|
|
4
|
-
<ProjectConfiguration Include="Debug|ARM">
|
|
5
|
-
<Configuration>Debug</Configuration>
|
|
6
|
-
<Platform>ARM</Platform>
|
|
7
|
-
</ProjectConfiguration>
|
|
8
|
-
<ProjectConfiguration Include="Debug|ARM64">
|
|
9
|
-
<Configuration>Debug</Configuration>
|
|
10
|
-
<Platform>ARM64</Platform>
|
|
11
|
-
</ProjectConfiguration>
|
|
12
|
-
<ProjectConfiguration Include="Debug|Win32">
|
|
13
|
-
<Configuration>Debug</Configuration>
|
|
14
|
-
<Platform>Win32</Platform>
|
|
15
|
-
</ProjectConfiguration>
|
|
16
|
-
<ProjectConfiguration Include="Debug|x64">
|
|
17
|
-
<Configuration>Debug</Configuration>
|
|
18
|
-
<Platform>x64</Platform>
|
|
19
|
-
</ProjectConfiguration>
|
|
20
|
-
<ProjectConfiguration Include="Release|ARM">
|
|
21
|
-
<Configuration>Release</Configuration>
|
|
22
|
-
<Platform>ARM</Platform>
|
|
23
|
-
</ProjectConfiguration>
|
|
24
|
-
<ProjectConfiguration Include="Release|ARM64">
|
|
25
|
-
<Configuration>Release</Configuration>
|
|
26
|
-
<Platform>ARM64</Platform>
|
|
27
|
-
</ProjectConfiguration>
|
|
28
|
-
<ProjectConfiguration Include="Release|Win32">
|
|
29
|
-
<Configuration>Release</Configuration>
|
|
30
|
-
<Platform>Win32</Platform>
|
|
31
|
-
</ProjectConfiguration>
|
|
32
|
-
<ProjectConfiguration Include="Release|x64">
|
|
33
|
-
<Configuration>Release</Configuration>
|
|
34
|
-
<Platform>x64</Platform>
|
|
35
|
-
</ProjectConfiguration>
|
|
36
|
-
</ItemGroup>
|
|
37
|
-
<PropertyGroup Label="Globals">
|
|
38
|
-
<ProjectName>xusb</ProjectName>
|
|
39
|
-
<ProjectGuid>{3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}</ProjectGuid>
|
|
40
|
-
<RootNamespace>examples</RootNamespace>
|
|
41
|
-
<Keyword>Win32Proj</Keyword>
|
|
42
|
-
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
|
|
43
|
-
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
|
|
44
|
-
<WindowsTargetPlatformVersion Condition="'$(Platform)'=='ARM' Or '$(Platform)'=='ARM64'">10.0.17763.0</WindowsTargetPlatformVersion>
|
|
45
|
-
</PropertyGroup>
|
|
46
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
47
|
-
<PropertyGroup Label="Configuration">
|
|
48
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
49
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
50
|
-
<PlatformToolset>v141</PlatformToolset>
|
|
51
|
-
<WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
|
|
52
|
-
</PropertyGroup>
|
|
53
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
54
|
-
<ImportGroup Label="ExtensionSettings">
|
|
55
|
-
</ImportGroup>
|
|
56
|
-
<ImportGroup Label="PropertySheets">
|
|
57
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
58
|
-
</ImportGroup>
|
|
59
|
-
<PropertyGroup Label="UserMacros" />
|
|
60
|
-
<PropertyGroup>
|
|
61
|
-
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
62
|
-
<IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\$(ProjectName)\</IntDir>
|
|
63
|
-
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\</OutDir>
|
|
64
|
-
</PropertyGroup>
|
|
65
|
-
<ItemDefinitionGroup>
|
|
66
|
-
<ClCompile>
|
|
67
|
-
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
|
|
68
|
-
<AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
69
|
-
<PreprocessorDefinitions>_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
70
|
-
<WarningLevel>Level3</WarningLevel>
|
|
71
|
-
</ClCompile>
|
|
72
|
-
<ClCompile Condition="'$(Configuration)'=='Debug'">
|
|
73
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
74
|
-
<Optimization>Disabled</Optimization>
|
|
75
|
-
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
76
|
-
</ClCompile>
|
|
77
|
-
<ClCompile Condition="'$(Configuration)'=='Release'">
|
|
78
|
-
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
79
|
-
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
80
|
-
</ClCompile>
|
|
81
|
-
<Link>
|
|
82
|
-
<ProgramDatabaseFile>$(TargetDir)$(ProjectName).pdb</ProgramDatabaseFile>
|
|
83
|
-
<SubSystem>Console</SubSystem>
|
|
84
|
-
<AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
85
|
-
</Link>
|
|
86
|
-
<Link Condition="'$(Configuration)'=='Debug'">
|
|
87
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
88
|
-
</Link>
|
|
89
|
-
</ItemDefinitionGroup>
|
|
90
|
-
<ItemGroup>
|
|
91
|
-
<ClCompile Include="..\examples\xusb.c" />
|
|
92
|
-
</ItemGroup>
|
|
93
|
-
<ItemGroup>
|
|
94
|
-
<ClInclude Include="..\libusb\libusb.h" />
|
|
95
|
-
</ItemGroup>
|
|
96
|
-
<ItemGroup>
|
|
97
|
-
<ProjectReference Include=".\libusb_static_2017.vcxproj">
|
|
98
|
-
<Project>{349ee8f9-7d25-4909-aaf5-ff3fade72187}</Project>
|
|
99
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
100
|
-
</ProjectReference>
|
|
101
|
-
</ItemGroup>
|
|
102
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
103
|
-
<ImportGroup Label="ExtensionTargets">
|
|
104
|
-
</ImportGroup>
|
|
105
|
-
</Project>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup>
|
|
4
|
-
<Filter Include="Source Files">
|
|
5
|
-
<UniqueIdentifier>{4bdcefa9-8c79-431b-965b-15b234737380}</UniqueIdentifier>
|
|
6
|
-
<Extensions>c</Extensions>
|
|
7
|
-
</Filter>
|
|
8
|
-
<Filter Include="Header Files">
|
|
9
|
-
<UniqueIdentifier>{f81e24cd-e12b-4324-ada3-accbab00ef08}</UniqueIdentifier>
|
|
10
|
-
<Extensions>h</Extensions>
|
|
11
|
-
</Filter>
|
|
12
|
-
</ItemGroup>
|
|
13
|
-
<ItemGroup>
|
|
14
|
-
<ClInclude Include="..\libusb\libusb.h">
|
|
15
|
-
<Filter>Header Files</Filter>
|
|
16
|
-
</ClInclude>
|
|
17
|
-
</ItemGroup>
|
|
18
|
-
<ItemGroup>
|
|
19
|
-
<ClCompile Include="..\examples\xusb.c">
|
|
20
|
-
<Filter>Source Files</Filter>
|
|
21
|
-
</ClCompile>
|
|
22
|
-
</ItemGroup>
|
|
23
|
-
</Project>
|