usb 2.0.0-alpha.2 → 2.1.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/.gitmodules +1 -1
- package/CHANGELOG.md +100 -0
- package/README.md +573 -0
- package/binding.gyp +12 -2
- package/dist/index.d.ts +4 -4
- package/dist/index.js +14 -8
- package/dist/index.js.map +1 -1
- package/dist/usb/bindings.d.ts +13 -0
- package/dist/usb/bindings.js +2 -1
- package/dist/usb/bindings.js.map +1 -1
- package/dist/usb/index.js +86 -2
- package/dist/usb/index.js.map +1 -1
- package/dist/usb/interface.js.map +1 -1
- package/dist/webusb/index.d.ts +32 -19
- package/dist/webusb/index.js +163 -67
- package/dist/webusb/index.js.map +1 -1
- package/dist/webusb/webusb-device.d.ts +1 -1
- package/dist/webusb/webusb-device.js +27 -15
- package/dist/webusb/webusb-device.js.map +1 -1
- package/libusb/.private/pre-commit.sh +7 -1
- package/libusb/.travis.yml +49 -0
- package/libusb/AUTHORS +44 -3
- package/libusb/Brewfile +4 -0
- package/libusb/ChangeLog +74 -2
- package/libusb/README.md +32 -0
- package/libusb/TODO +1 -1
- package/libusb/Xcode/common.xcconfig +12 -0
- package/libusb/Xcode/config.h +25 -0
- package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +959 -1
- package/libusb/android/README +4 -2
- package/libusb/android/config.h +75 -0
- package/libusb/appveyor.yml +41 -0
- package/libusb/appveyor_cygwin.bat +11 -0
- package/libusb/appveyor_minGW.bat +19 -0
- package/libusb/autogen.sh +1 -1
- package/libusb/bootstrap.sh +3 -16
- package/libusb/configure.ac +108 -80
- package/libusb/doc/doxygen.cfg.in +1785 -739
- package/libusb/examples/Makefile.am +1 -1
- package/libusb/examples/dpfp.c +3 -1
- package/libusb/examples/dpfp_threaded.c +23 -10
- package/libusb/examples/ezusb.c +3 -3
- package/libusb/examples/ezusb.h +2 -2
- package/libusb/examples/fxload.c +31 -9
- package/libusb/examples/hotplugtest.c +35 -7
- package/libusb/examples/listdevs.c +3 -1
- package/libusb/examples/sam3u_benchmark.c +3 -3
- package/libusb/examples/testlibusb.c +277 -0
- package/libusb/examples/xusb.c +40 -34
- package/libusb/libusb/Makefile.am +49 -23
- package/libusb/libusb/core.c +855 -457
- package/libusb/libusb/descriptor.c +72 -78
- package/libusb/libusb/hotplug.c +122 -76
- package/libusb/libusb/hotplug.h +42 -25
- package/libusb/libusb/io.c +625 -390
- package/libusb/libusb/libusb-1.0.def +12 -0
- package/libusb/libusb/libusb.h +218 -150
- package/libusb/libusb/libusbi.h +346 -176
- package/libusb/libusb/os/darwin_usb.c +604 -319
- package/libusb/libusb/os/darwin_usb.h +61 -20
- package/libusb/libusb/os/haiku_pollfs.cpp +367 -0
- package/libusb/libusb/os/haiku_usb.h +113 -0
- package/libusb/libusb/os/haiku_usb_backend.cpp +533 -0
- package/libusb/libusb/os/haiku_usb_raw.cpp +267 -0
- package/libusb/libusb/os/haiku_usb_raw.h +188 -0
- package/libusb/libusb/os/linux_netlink.c +186 -146
- package/libusb/libusb/os/linux_udev.c +36 -14
- package/libusb/libusb/os/linux_usbfs.c +426 -225
- package/libusb/libusb/os/linux_usbfs.h +5 -3
- package/libusb/libusb/os/netbsd_usb.c +21 -77
- package/libusb/libusb/os/openbsd_usb.c +32 -115
- package/libusb/libusb/os/poll_posix.c +38 -5
- package/libusb/libusb/os/poll_posix.h +3 -0
- package/libusb/libusb/os/poll_windows.c +277 -626
- package/libusb/libusb/os/poll_windows.h +11 -44
- package/libusb/libusb/os/sunos_usb.c +1695 -0
- package/libusb/libusb/os/sunos_usb.h +80 -0
- package/libusb/libusb/os/threads_posix.c +24 -26
- package/libusb/libusb/os/threads_posix.h +73 -21
- package/libusb/libusb/os/threads_windows.c +71 -157
- package/libusb/libusb/os/threads_windows.h +68 -44
- package/libusb/libusb/os/wince_usb.c +276 -420
- package/libusb/libusb/os/wince_usb.h +23 -28
- package/libusb/libusb/os/windows_common.h +78 -58
- package/libusb/libusb/os/windows_nt_common.c +1010 -0
- package/libusb/libusb/os/windows_nt_common.h +110 -0
- package/libusb/libusb/os/windows_nt_shared_types.h +147 -0
- package/libusb/libusb/os/windows_usbdk.c +830 -0
- package/libusb/libusb/os/windows_usbdk.h +103 -0
- package/libusb/libusb/os/windows_winusb.c +4391 -0
- package/libusb/libusb/os/windows_winusb.h +783 -0
- package/libusb/libusb/strerror.c +41 -7
- package/libusb/libusb/sync.c +41 -13
- package/libusb/libusb/version.h +1 -1
- package/libusb/libusb/version_nano.h +1 -1
- package/libusb/libusb-1.0.pc.in +1 -1
- package/libusb/msvc/appveyor.bat +27 -0
- package/libusb/msvc/config.h +5 -4
- package/libusb/msvc/ddk_build.cmd +87 -43
- package/libusb/msvc/fxload_2010.vcxproj +24 -104
- package/libusb/msvc/fxload_2012.vcxproj +24 -107
- package/libusb/msvc/fxload_2013.vcxproj +24 -107
- package/libusb/msvc/fxload_2015.vcxproj +91 -0
- package/libusb/msvc/fxload_2017.vcxproj +114 -0
- package/libusb/msvc/fxload_sources +1 -1
- package/libusb/msvc/getopt_2010.vcxproj +16 -75
- package/libusb/msvc/getopt_2012.vcxproj +16 -79
- package/libusb/msvc/getopt_2013.vcxproj +16 -79
- package/libusb/msvc/getopt_2015.vcxproj +73 -0
- package/libusb/msvc/getopt_2017.vcxproj +98 -0
- package/libusb/msvc/getopt_sources +6 -2
- package/libusb/msvc/hotplugtest_2010.vcxproj +18 -99
- package/libusb/msvc/hotplugtest_2012.vcxproj +18 -102
- package/libusb/msvc/hotplugtest_2013.vcxproj +18 -102
- package/libusb/msvc/hotplugtest_2015.vcxproj +83 -0
- package/libusb/msvc/hotplugtest_2017.vcxproj +106 -0
- package/libusb/msvc/hotplugtest_sources +1 -1
- package/libusb/msvc/libusb_2005.sln +20 -20
- package/libusb/msvc/libusb_2010.sln +57 -46
- package/libusb/msvc/libusb_2012.sln +57 -46
- package/libusb/msvc/libusb_2013.sln +57 -50
- package/libusb/msvc/libusb_2015.sln +59 -52
- package/libusb/msvc/libusb_2017.sln +186 -0
- package/libusb/msvc/libusb_dll.dsp +2 -2
- package/libusb/msvc/libusb_dll_2005.vcproj +30 -2
- package/libusb/msvc/libusb_dll_2010.vcxproj +26 -90
- package/libusb/msvc/libusb_dll_2012.vcxproj +28 -96
- package/libusb/msvc/libusb_dll_2013.vcxproj +28 -96
- package/libusb/msvc/libusb_dll_2015.vcxproj +107 -0
- package/libusb/msvc/libusb_dll_2017.vcxproj +134 -0
- package/libusb/msvc/libusb_dll_wince.vcproj +9 -1
- package/libusb/msvc/libusb_sources +10 -5
- package/libusb/msvc/libusb_static.dsp +2 -2
- package/libusb/msvc/libusb_static_2005.vcproj +32 -4
- package/libusb/msvc/libusb_static_2010.vcxproj +24 -83
- package/libusb/msvc/libusb_static_2012.vcxproj +25 -87
- package/libusb/msvc/libusb_static_2013.vcxproj +25 -87
- package/libusb/msvc/libusb_static_2015.vcxproj +98 -0
- package/libusb/msvc/libusb_static_2017.vcxproj +117 -0
- package/libusb/msvc/libusb_static_wince.vcproj +20 -26
- package/libusb/msvc/libusb_wince.sln +88 -88
- package/libusb/msvc/listdevs_2010.vcxproj +16 -99
- package/libusb/msvc/listdevs_2012.vcxproj +16 -102
- package/libusb/msvc/listdevs_2013.vcxproj +16 -102
- package/libusb/msvc/listdevs_2015.vcxproj +83 -0
- package/libusb/msvc/listdevs_2017.vcxproj +106 -0
- package/libusb/msvc/listdevs_sources +2 -1
- package/libusb/msvc/stress_2010.vcxproj +20 -101
- package/libusb/msvc/stress_2012.vcxproj +20 -104
- package/libusb/msvc/stress_2013.vcxproj +20 -104
- package/libusb/msvc/stress_2015.vcxproj +87 -0
- package/libusb/msvc/stress_2017.vcxproj +110 -0
- package/libusb/msvc/stress_sources +21 -0
- package/libusb/msvc/testlibusb_2010.vcxproj +82 -0
- package/libusb/msvc/testlibusb_2012.vcxproj +83 -0
- package/libusb/msvc/testlibusb_2013.vcxproj +83 -0
- package/libusb/msvc/testlibusb_2015.vcxproj +83 -0
- package/libusb/msvc/testlibusb_2017.vcxproj +106 -0
- package/libusb/msvc/testlibusb_sources +20 -0
- package/libusb/msvc/xusb_2010.vcxproj +17 -98
- package/libusb/msvc/xusb_2012.vcxproj +17 -101
- package/libusb/msvc/xusb_2013.vcxproj +17 -101
- package/libusb/msvc/xusb_2015.vcxproj +83 -0
- package/libusb/msvc/xusb_2017.vcxproj +106 -0
- package/libusb/msvc/xusb_sources +1 -1
- package/libusb/tests/stress.c +2 -2
- package/libusb/tests/testlib.c +0 -4
- package/libusb/travis-autogen.sh +39 -0
- package/libusb.gypi +21 -2
- package/package.json +18 -13
- package/prebuilds/android-arm/node.napi.node +0 -0
- package/prebuilds/android-arm64/node.napi.node +0 -0
- package/prebuilds/darwin-x64+arm64/node.napi.node +0 -0
- package/prebuilds/linux-arm/node.napi.node +0 -0
- package/prebuilds/linux-arm64/node.napi.node +0 -0
- package/prebuilds/linux-ia32/node.napi.node +0 -0
- package/prebuilds/linux-x64/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 +7 -7
- package/src/node_usb.cc +43 -1
- package/src/node_usb.h +1 -0
- package/src/uv_async_queue.h +33 -25
- package/test/usb.coffee +6 -0
- package/tsc/index.ts +13 -7
- package/tsc/usb/bindings.ts +19 -1
- package/tsc/usb/index.ts +67 -19
- package/tsc/usb/interface.ts +2 -2
- package/tsc/webusb/index.ts +197 -74
- package/tsc/webusb/webusb-device.ts +30 -17
- package/.github/workflows/prebuild.yml +0 -48
- package/Readme.md +0 -339
- package/dist/webusb/typed-event-target.d.ts +0 -11
- package/dist/webusb/typed-event-target.js +0 -21
- package/dist/webusb/typed-event-target.js.map +0 -1
- package/docs/assets/css/main.css +0 -2660
- package/docs/assets/images/icons.png +0 -0
- package/docs/assets/images/icons@2x.png +0 -0
- package/docs/assets/images/widgets.png +0 -0
- package/docs/assets/images/widgets@2x.png +0 -0
- package/docs/assets/js/main.js +0 -248
- package/docs/assets/js/search.js +0 -1
- package/docs/classes/usb_bindings.device.html +0 -1338
- package/docs/classes/usb_bindings.libusbexception.html +0 -234
- package/docs/classes/usb_bindings.transfer.html +0 -344
- package/docs/classes/usb_capability.capability.html +0 -297
- package/docs/classes/usb_device.extendeddevice.html +0 -766
- package/docs/classes/usb_endpoint.endpoint.html +0 -472
- package/docs/classes/usb_endpoint.inendpoint.html +0 -766
- package/docs/classes/usb_endpoint.outendpoint.html +0 -582
- package/docs/classes/usb_interface.interface.html +0 -648
- package/docs/classes/webusb.webusb-1.html +0 -615
- package/docs/classes/webusb_mutex.mutex.html +0 -270
- package/docs/classes/webusb_typed_event_target.typedeventtarget.html +0 -443
- package/docs/classes/webusb_webusb_device.webusbdevice.html +0 -904
- package/docs/index.html +0 -500
- package/docs/interfaces/usb.deviceevents.html +0 -242
- package/docs/interfaces/usb_descriptors.bosdescriptor.html +0 -293
- package/docs/interfaces/usb_descriptors.capabilitydescriptor.html +0 -274
- package/docs/interfaces/usb_descriptors.configdescriptor.html +0 -388
- package/docs/interfaces/usb_descriptors.devicedescriptor.html +0 -464
- package/docs/interfaces/usb_descriptors.endpointdescriptor.html +0 -370
- package/docs/interfaces/usb_descriptors.interfacedescriptor.html +0 -407
- package/docs/interfaces/webusb.usboptions.html +0 -226
- package/docs/modules/index.html +0 -304
- package/docs/modules/usb.html +0 -173
- package/docs/modules/usb_bindings.html +0 -2248
- package/docs/modules/usb_capability.html +0 -156
- package/docs/modules/usb_descriptors.html +0 -176
- package/docs/modules/usb_device.html +0 -156
- package/docs/modules/usb_endpoint.html +0 -164
- package/docs/modules/usb_interface.html +0 -156
- package/docs/modules/webusb.html +0 -165
- package/docs/modules/webusb_mutex.html +0 -156
- package/docs/modules/webusb_typed_event_target.html +0 -156
- package/docs/modules/webusb_webusb_device.html +0 -156
- package/docs/modules.html +0 -156
- package/libusb/INSTALL +0 -234
- package/libusb/README +0 -28
- package/libusb/libusb/os/windows_usb.c +0 -5347
- package/libusb/libusb/os/windows_usb.h +0 -971
- package/libusb/msvc/fxload_2010.vcxproj.filters +0 -25
- package/libusb/msvc/fxload_2012.vcxproj.filters +0 -25
- package/libusb/msvc/getopt_2010.vcxproj.filters +0 -26
- package/libusb/msvc/getopt_2012.vcxproj.filters +0 -26
- package/libusb/msvc/hotplugtest_2010.vcxproj.filters +0 -14
- package/libusb/msvc/hotplugtest_2012.vcxproj.filters +0 -14
- package/libusb/msvc/libusb_dll_2010.vcxproj.filters +0 -81
- package/libusb/msvc/libusb_dll_2012.vcxproj.filters +0 -84
- package/libusb/msvc/libusb_static_2010.vcxproj.filters +0 -74
- package/libusb/msvc/libusb_static_2012.vcxproj.filters +0 -74
- package/libusb/msvc/listdevs_2010.vcxproj.filters +0 -14
- package/libusb/msvc/listdevs_2012.vcxproj.filters +0 -14
- package/libusb/msvc/stress_2010.vcxproj.filters +0 -25
- package/libusb/msvc/stress_2012.vcxproj.filters +0 -25
- package/libusb/msvc/xusb_2010.vcxproj.filters +0 -14
- package/libusb/msvc/xusb_2012.vcxproj.filters +0 -14
- package/tsc/webusb/typed-event-target.ts +0 -23
|
@@ -24,108 +24,41 @@
|
|
|
24
24
|
<RootNamespace>libusb</RootNamespace>
|
|
25
25
|
</PropertyGroup>
|
|
26
26
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
27
|
-
<PropertyGroup
|
|
28
|
-
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
29
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
30
|
-
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
31
|
-
<PlatformToolset>v120</PlatformToolset>
|
|
32
|
-
</PropertyGroup>
|
|
33
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
34
|
-
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
35
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
36
|
-
<PlatformToolset>v120</PlatformToolset>
|
|
37
|
-
</PropertyGroup>
|
|
38
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
39
|
-
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
40
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
41
|
-
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
42
|
-
<PlatformToolset>v120</PlatformToolset>
|
|
43
|
-
</PropertyGroup>
|
|
44
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
27
|
+
<PropertyGroup Label="Configuration">
|
|
45
28
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
46
29
|
<CharacterSet>Unicode</CharacterSet>
|
|
47
30
|
<PlatformToolset>v120</PlatformToolset>
|
|
31
|
+
<WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
|
|
48
32
|
</PropertyGroup>
|
|
49
33
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
50
34
|
<ImportGroup Label="ExtensionSettings">
|
|
51
35
|
</ImportGroup>
|
|
52
|
-
<ImportGroup
|
|
53
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
54
|
-
</ImportGroup>
|
|
55
|
-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
|
56
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
57
|
-
</ImportGroup>
|
|
58
|
-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
59
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
60
|
-
</ImportGroup>
|
|
61
|
-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
36
|
+
<ImportGroup Label="PropertySheets">
|
|
62
37
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
63
38
|
</ImportGroup>
|
|
64
39
|
<PropertyGroup Label="UserMacros" />
|
|
65
40
|
<PropertyGroup>
|
|
66
41
|
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
67
|
-
<
|
|
68
|
-
<
|
|
69
|
-
<
|
|
70
|
-
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(SolutionDir)..\$(Platform)\$(Configuration)\lib\libusb-1.0\</IntDir>
|
|
71
|
-
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)..\$(Platform)\$(Configuration)\lib\</OutDir>
|
|
72
|
-
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)..\$(Platform)\$(Configuration)\lib\libusb-1.0\</IntDir>
|
|
73
|
-
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(SolutionDir)..\$(Platform)\$(Configuration)\lib\</OutDir>
|
|
74
|
-
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(SolutionDir)..\$(Platform)\$(Configuration)\lib\libusb-1.0\</IntDir>
|
|
75
|
-
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">libusb-1.0</TargetName>
|
|
76
|
-
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">libusb-1.0</TargetName>
|
|
77
|
-
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">libusb-1.0</TargetName>
|
|
78
|
-
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">libusb-1.0</TargetName>
|
|
42
|
+
<IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\lib\$(TargetName)\</IntDir>
|
|
43
|
+
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\lib\</OutDir>
|
|
44
|
+
<TargetName>libusb-1.0</TargetName>
|
|
79
45
|
</PropertyGroup>
|
|
80
|
-
<ItemDefinitionGroup
|
|
46
|
+
<ItemDefinitionGroup>
|
|
81
47
|
<ClCompile>
|
|
82
|
-
<
|
|
48
|
+
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
|
|
83
49
|
<AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
84
|
-
<PreprocessorDefinitions>
|
|
85
|
-
<
|
|
50
|
+
<PreprocessorDefinitions>WINVER=0x0501;_WIN32_WINNT=0x0501;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
51
|
+
<ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
|
|
86
52
|
<WarningLevel>Level4</WarningLevel>
|
|
87
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
88
53
|
</ClCompile>
|
|
89
|
-
<
|
|
90
|
-
<
|
|
91
|
-
</Lib>
|
|
92
|
-
</ItemDefinitionGroup>
|
|
93
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
94
|
-
<Midl>
|
|
95
|
-
<TargetEnvironment>X64</TargetEnvironment>
|
|
96
|
-
</Midl>
|
|
97
|
-
<ClCompile>
|
|
54
|
+
<ClCompile Condition="'$(Configuration)'=='Debug'">
|
|
55
|
+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
98
56
|
<Optimization>Disabled</Optimization>
|
|
99
|
-
<AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
100
|
-
<PreprocessorDefinitions>_WIN32;_WIN64;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
101
57
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
102
|
-
<WarningLevel>Level4</WarningLevel>
|
|
103
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
104
|
-
</ClCompile>
|
|
105
|
-
<Lib>
|
|
106
|
-
<OutputFile>$(OutDir)libusb-1.0.lib</OutputFile>
|
|
107
|
-
</Lib>
|
|
108
|
-
</ItemDefinitionGroup>
|
|
109
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
110
|
-
<ClCompile>
|
|
111
|
-
<AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
112
|
-
<PreprocessorDefinitions>_WIN32;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
113
|
-
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
114
|
-
<WarningLevel>Level4</WarningLevel>
|
|
115
58
|
</ClCompile>
|
|
116
|
-
<
|
|
117
|
-
<
|
|
118
|
-
</Lib>
|
|
119
|
-
</ItemDefinitionGroup>
|
|
120
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
121
|
-
<Midl>
|
|
122
|
-
<TargetEnvironment>X64</TargetEnvironment>
|
|
123
|
-
</Midl>
|
|
124
|
-
<ClCompile>
|
|
125
|
-
<AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
126
|
-
<PreprocessorDefinitions>_WIN32;_WIN64;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
59
|
+
<ClCompile Condition="'$(Configuration)'=='Release'">
|
|
60
|
+
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
127
61
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
128
|
-
<WarningLevel>Level4</WarningLevel>
|
|
129
62
|
</ClCompile>
|
|
130
63
|
<Lib>
|
|
131
64
|
<OutputFile>$(OutDir)libusb-1.0.lib</OutputFile>
|
|
@@ -140,21 +73,26 @@
|
|
|
140
73
|
<ClCompile Include="..\libusb\strerror.c" />
|
|
141
74
|
<ClCompile Include="..\libusb\sync.c" />
|
|
142
75
|
<ClCompile Include="..\libusb\os\threads_windows.c" />
|
|
143
|
-
<ClCompile Include="..\libusb\os\
|
|
76
|
+
<ClCompile Include="..\libusb\os\windows_nt_common.c" />
|
|
77
|
+
<ClCompile Include="..\libusb\os\windows_usbdk.c" />
|
|
78
|
+
<ClCompile Include="..\libusb\os\windows_winusb.c" />
|
|
144
79
|
</ItemGroup>
|
|
145
80
|
<ItemGroup>
|
|
146
|
-
<ClInclude Include="..\libusb\hotplug.h" />
|
|
147
|
-
<ClInclude Include="..\libusb\version.h" />
|
|
148
|
-
<ClInclude Include="..\libusb\version_nano.h" />
|
|
149
81
|
<ClInclude Include=".\config.h" />
|
|
82
|
+
<ClInclude Include="..\libusb\hotplug.h" />
|
|
150
83
|
<ClInclude Include="..\libusb\libusb.h" />
|
|
151
84
|
<ClInclude Include="..\libusb\libusbi.h" />
|
|
152
85
|
<ClInclude Include="..\libusb\os\poll_windows.h" />
|
|
153
86
|
<ClInclude Include="..\libusb\os\threads_windows.h" />
|
|
154
|
-
<ClInclude Include="..\libusb\
|
|
87
|
+
<ClInclude Include="..\libusb\version.h" />
|
|
88
|
+
<ClInclude Include="..\libusb\version_nano.h" />
|
|
155
89
|
<ClInclude Include="..\libusb\os\windows_common.h" />
|
|
90
|
+
<ClInclude Include="..\libusb\os\windows_nt_common.h" />
|
|
91
|
+
<ClInclude Include="..\libusb\os\windows_nt_shared_types.h" />
|
|
92
|
+
<ClInclude Include="..\libusb\os\windows_usbdk.h" />
|
|
93
|
+
<ClInclude Include="..\libusb\os\windows_winusb.h" />
|
|
156
94
|
</ItemGroup>
|
|
157
95
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
158
96
|
<ImportGroup Label="ExtensionTargets">
|
|
159
97
|
</ImportGroup>
|
|
160
|
-
</Project>
|
|
98
|
+
</Project>
|
|
@@ -0,0 +1,98 @@
|
|
|
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>libusb-1.0 (static)</ProjectName>
|
|
23
|
+
<ProjectGuid>{349EE8F9-7D25-4909-AAF5-FF3FADE72187}</ProjectGuid>
|
|
24
|
+
<RootNamespace>libusb</RootNamespace>
|
|
25
|
+
</PropertyGroup>
|
|
26
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
27
|
+
<PropertyGroup Label="Configuration">
|
|
28
|
+
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
29
|
+
<CharacterSet>Unicode</CharacterSet>
|
|
30
|
+
<PlatformToolset>v140</PlatformToolset>
|
|
31
|
+
<WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
|
|
32
|
+
</PropertyGroup>
|
|
33
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
34
|
+
<ImportGroup Label="ExtensionSettings">
|
|
35
|
+
</ImportGroup>
|
|
36
|
+
<ImportGroup Label="PropertySheets">
|
|
37
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
38
|
+
</ImportGroup>
|
|
39
|
+
<PropertyGroup Label="UserMacros" />
|
|
40
|
+
<PropertyGroup>
|
|
41
|
+
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
42
|
+
<IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\lib\$(TargetName)\</IntDir>
|
|
43
|
+
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\lib\</OutDir>
|
|
44
|
+
<TargetName>libusb-1.0</TargetName>
|
|
45
|
+
</PropertyGroup>
|
|
46
|
+
<ItemDefinitionGroup>
|
|
47
|
+
<ClCompile>
|
|
48
|
+
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
|
|
49
|
+
<AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
50
|
+
<PreprocessorDefinitions>WINVER=0x0501;_WIN32_WINNT=0x0501;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
51
|
+
<ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
|
|
52
|
+
<WarningLevel>Level4</WarningLevel>
|
|
53
|
+
</ClCompile>
|
|
54
|
+
<ClCompile Condition="'$(Configuration)'=='Debug'">
|
|
55
|
+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
56
|
+
<Optimization>Disabled</Optimization>
|
|
57
|
+
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
58
|
+
</ClCompile>
|
|
59
|
+
<ClCompile Condition="'$(Configuration)'=='Release'">
|
|
60
|
+
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
61
|
+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
62
|
+
</ClCompile>
|
|
63
|
+
<Lib>
|
|
64
|
+
<OutputFile>$(OutDir)libusb-1.0.lib</OutputFile>
|
|
65
|
+
</Lib>
|
|
66
|
+
</ItemDefinitionGroup>
|
|
67
|
+
<ItemGroup>
|
|
68
|
+
<ClCompile Include="..\libusb\core.c" />
|
|
69
|
+
<ClCompile Include="..\libusb\descriptor.c" />
|
|
70
|
+
<ClCompile Include="..\libusb\hotplug.c" />
|
|
71
|
+
<ClCompile Include="..\libusb\io.c" />
|
|
72
|
+
<ClCompile Include="..\libusb\os\poll_windows.c" />
|
|
73
|
+
<ClCompile Include="..\libusb\strerror.c" />
|
|
74
|
+
<ClCompile Include="..\libusb\sync.c" />
|
|
75
|
+
<ClCompile Include="..\libusb\os\threads_windows.c" />
|
|
76
|
+
<ClCompile Include="..\libusb\os\windows_nt_common.c" />
|
|
77
|
+
<ClCompile Include="..\libusb\os\windows_usbdk.c" />
|
|
78
|
+
<ClCompile Include="..\libusb\os\windows_winusb.c" />
|
|
79
|
+
</ItemGroup>
|
|
80
|
+
<ItemGroup>
|
|
81
|
+
<ClInclude Include=".\config.h" />
|
|
82
|
+
<ClInclude Include="..\libusb\hotplug.h" />
|
|
83
|
+
<ClInclude Include="..\libusb\libusb.h" />
|
|
84
|
+
<ClInclude Include="..\libusb\libusbi.h" />
|
|
85
|
+
<ClInclude Include="..\libusb\os\poll_windows.h" />
|
|
86
|
+
<ClInclude Include="..\libusb\os\threads_windows.h" />
|
|
87
|
+
<ClInclude Include="..\libusb\version.h" />
|
|
88
|
+
<ClInclude Include="..\libusb\version_nano.h" />
|
|
89
|
+
<ClInclude Include="..\libusb\os\windows_common.h" />
|
|
90
|
+
<ClInclude Include="..\libusb\os\windows_nt_common.h" />
|
|
91
|
+
<ClInclude Include="..\libusb\os\windows_nt_shared_types.h" />
|
|
92
|
+
<ClInclude Include="..\libusb\os\windows_usbdk.h" />
|
|
93
|
+
<ClInclude Include="..\libusb\os\windows_winusb.h" />
|
|
94
|
+
</ItemGroup>
|
|
95
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
96
|
+
<ImportGroup Label="ExtensionTargets">
|
|
97
|
+
</ImportGroup>
|
|
98
|
+
</Project>
|
|
@@ -0,0 +1,117 @@
|
|
|
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>libusb-1.0 (static)</ProjectName>
|
|
39
|
+
<ProjectGuid>{349EE8F9-7D25-4909-AAF5-FF3FADE72187}</ProjectGuid>
|
|
40
|
+
<RootNamespace>libusb</RootNamespace>
|
|
41
|
+
<WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
|
|
42
|
+
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
|
|
43
|
+
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
|
|
44
|
+
</PropertyGroup>
|
|
45
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
46
|
+
<PropertyGroup Label="Configuration">
|
|
47
|
+
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
48
|
+
<CharacterSet>Unicode</CharacterSet>
|
|
49
|
+
<PlatformToolset>v141</PlatformToolset>
|
|
50
|
+
<WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
|
|
51
|
+
</PropertyGroup>
|
|
52
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
53
|
+
<ImportGroup Label="ExtensionSettings">
|
|
54
|
+
</ImportGroup>
|
|
55
|
+
<ImportGroup Label="PropertySheets">
|
|
56
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
57
|
+
</ImportGroup>
|
|
58
|
+
<PropertyGroup Label="UserMacros" />
|
|
59
|
+
<PropertyGroup>
|
|
60
|
+
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
61
|
+
<IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\lib\$(TargetName)\</IntDir>
|
|
62
|
+
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\lib\</OutDir>
|
|
63
|
+
<TargetName>libusb-1.0</TargetName>
|
|
64
|
+
</PropertyGroup>
|
|
65
|
+
<ItemDefinitionGroup>
|
|
66
|
+
<ClCompile>
|
|
67
|
+
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
|
|
68
|
+
<AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
69
|
+
<PreprocessorDefinitions>WINVER=0x0501;_WIN32_WINNT=0x0501;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
70
|
+
<ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
|
|
71
|
+
<WarningLevel>Level4</WarningLevel>
|
|
72
|
+
</ClCompile>
|
|
73
|
+
<ClCompile Condition="'$(Configuration)'=='Debug'">
|
|
74
|
+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
75
|
+
<Optimization>Disabled</Optimization>
|
|
76
|
+
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
77
|
+
</ClCompile>
|
|
78
|
+
<ClCompile Condition="'$(Configuration)'=='Release'">
|
|
79
|
+
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
80
|
+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
81
|
+
</ClCompile>
|
|
82
|
+
<Lib>
|
|
83
|
+
<OutputFile>$(OutDir)libusb-1.0.lib</OutputFile>
|
|
84
|
+
</Lib>
|
|
85
|
+
</ItemDefinitionGroup>
|
|
86
|
+
<ItemGroup>
|
|
87
|
+
<ClCompile Include="..\libusb\core.c" />
|
|
88
|
+
<ClCompile Include="..\libusb\descriptor.c" />
|
|
89
|
+
<ClCompile Include="..\libusb\hotplug.c" />
|
|
90
|
+
<ClCompile Include="..\libusb\io.c" />
|
|
91
|
+
<ClCompile Include="..\libusb\os\poll_windows.c" />
|
|
92
|
+
<ClCompile Include="..\libusb\strerror.c" />
|
|
93
|
+
<ClCompile Include="..\libusb\sync.c" />
|
|
94
|
+
<ClCompile Include="..\libusb\os\threads_windows.c" />
|
|
95
|
+
<ClCompile Include="..\libusb\os\windows_nt_common.c" />
|
|
96
|
+
<ClCompile Include="..\libusb\os\windows_usbdk.c" />
|
|
97
|
+
<ClCompile Include="..\libusb\os\windows_winusb.c" />
|
|
98
|
+
</ItemGroup>
|
|
99
|
+
<ItemGroup>
|
|
100
|
+
<ClInclude Include=".\config.h" />
|
|
101
|
+
<ClInclude Include="..\libusb\hotplug.h" />
|
|
102
|
+
<ClInclude Include="..\libusb\libusb.h" />
|
|
103
|
+
<ClInclude Include="..\libusb\libusbi.h" />
|
|
104
|
+
<ClInclude Include="..\libusb\os\poll_windows.h" />
|
|
105
|
+
<ClInclude Include="..\libusb\os\threads_windows.h" />
|
|
106
|
+
<ClInclude Include="..\libusb\version.h" />
|
|
107
|
+
<ClInclude Include="..\libusb\version_nano.h" />
|
|
108
|
+
<ClInclude Include="..\libusb\os\windows_common.h" />
|
|
109
|
+
<ClInclude Include="..\libusb\os\windows_nt_common.h" />
|
|
110
|
+
<ClInclude Include="..\libusb\os\windows_nt_shared_types.h" />
|
|
111
|
+
<ClInclude Include="..\libusb\os\windows_usbdk.h" />
|
|
112
|
+
<ClInclude Include="..\libusb\os\windows_winusb.h" />
|
|
113
|
+
</ItemGroup>
|
|
114
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
115
|
+
<ImportGroup Label="ExtensionTargets">
|
|
116
|
+
</ImportGroup>
|
|
117
|
+
</Project>
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
ExecutionBucket="7"
|
|
61
61
|
Optimization="0"
|
|
62
62
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
63
|
-
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
63
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
64
64
|
MinimalRebuild="true"
|
|
65
65
|
RuntimeLibrary="3"
|
|
66
66
|
WarningLevel="3"
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
ExecutionBucket="7"
|
|
136
136
|
Optimization="0"
|
|
137
137
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
138
|
-
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
138
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
139
139
|
MinimalRebuild="true"
|
|
140
140
|
RuntimeLibrary="3"
|
|
141
141
|
WarningLevel="3"
|
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
ExecutionBucket="7"
|
|
210
210
|
Optimization="0"
|
|
211
211
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
212
|
-
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
212
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
213
213
|
MinimalRebuild="true"
|
|
214
214
|
RuntimeLibrary="3"
|
|
215
215
|
WarningLevel="3"
|
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
ExecutionBucket="7"
|
|
284
284
|
Optimization="0"
|
|
285
285
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
286
|
-
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
286
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
287
287
|
MinimalRebuild="true"
|
|
288
288
|
RuntimeLibrary="3"
|
|
289
289
|
WarningLevel="3"
|
|
@@ -357,7 +357,7 @@
|
|
|
357
357
|
ExecutionBucket="7"
|
|
358
358
|
Optimization="0"
|
|
359
359
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
360
|
-
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
360
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
361
361
|
MinimalRebuild="true"
|
|
362
362
|
RuntimeLibrary="3"
|
|
363
363
|
WarningLevel="3"
|
|
@@ -431,7 +431,7 @@
|
|
|
431
431
|
ExecutionBucket="7"
|
|
432
432
|
Optimization="0"
|
|
433
433
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
434
|
-
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
434
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
435
435
|
MinimalRebuild="true"
|
|
436
436
|
RuntimeLibrary="3"
|
|
437
437
|
WarningLevel="3"
|
|
@@ -505,7 +505,7 @@
|
|
|
505
505
|
ExecutionBucket="7"
|
|
506
506
|
Optimization="0"
|
|
507
507
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
508
|
-
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
508
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
509
509
|
MinimalRebuild="true"
|
|
510
510
|
RuntimeLibrary="3"
|
|
511
511
|
WarningLevel="3"
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
Name="VCCLCompilerTool"
|
|
580
580
|
ExecutionBucket="7"
|
|
581
581
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
582
|
-
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
582
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
583
583
|
MinimalRebuild="true"
|
|
584
584
|
RuntimeLibrary="2"
|
|
585
585
|
WarningLevel="3"
|
|
@@ -653,7 +653,7 @@
|
|
|
653
653
|
Name="VCCLCompilerTool"
|
|
654
654
|
ExecutionBucket="7"
|
|
655
655
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
656
|
-
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
656
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
657
657
|
MinimalRebuild="true"
|
|
658
658
|
RuntimeLibrary="2"
|
|
659
659
|
WarningLevel="3"
|
|
@@ -727,7 +727,7 @@
|
|
|
727
727
|
Name="VCCLCompilerTool"
|
|
728
728
|
ExecutionBucket="7"
|
|
729
729
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
730
|
-
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
730
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
731
731
|
MinimalRebuild="true"
|
|
732
732
|
RuntimeLibrary="2"
|
|
733
733
|
WarningLevel="3"
|
|
@@ -801,7 +801,7 @@
|
|
|
801
801
|
Name="VCCLCompilerTool"
|
|
802
802
|
ExecutionBucket="7"
|
|
803
803
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
804
|
-
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
804
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
805
805
|
MinimalRebuild="true"
|
|
806
806
|
RuntimeLibrary="2"
|
|
807
807
|
WarningLevel="3"
|
|
@@ -875,7 +875,7 @@
|
|
|
875
875
|
Name="VCCLCompilerTool"
|
|
876
876
|
ExecutionBucket="7"
|
|
877
877
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
878
|
-
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
878
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
879
879
|
MinimalRebuild="true"
|
|
880
880
|
RuntimeLibrary="2"
|
|
881
881
|
WarningLevel="3"
|
|
@@ -949,7 +949,7 @@
|
|
|
949
949
|
Name="VCCLCompilerTool"
|
|
950
950
|
ExecutionBucket="7"
|
|
951
951
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
952
|
-
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
952
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
953
953
|
MinimalRebuild="true"
|
|
954
954
|
RuntimeLibrary="2"
|
|
955
955
|
WarningLevel="3"
|
|
@@ -1023,7 +1023,7 @@
|
|
|
1023
1023
|
Name="VCCLCompilerTool"
|
|
1024
1024
|
ExecutionBucket="7"
|
|
1025
1025
|
AdditionalIncludeDirectories=".;..\libusb"
|
|
1026
|
-
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;
|
|
1026
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
1027
1027
|
MinimalRebuild="true"
|
|
1028
1028
|
RuntimeLibrary="2"
|
|
1029
1029
|
WarningLevel="3"
|
|
@@ -1132,6 +1132,10 @@
|
|
|
1132
1132
|
RelativePath="errno.h"
|
|
1133
1133
|
>
|
|
1134
1134
|
</File>
|
|
1135
|
+
<File
|
|
1136
|
+
RelativePath="..\libusb\hotplug.h"
|
|
1137
|
+
>
|
|
1138
|
+
</File>
|
|
1135
1139
|
<File
|
|
1136
1140
|
RelativePath="..\libusb\libusb.h"
|
|
1137
1141
|
>
|
|
@@ -1157,25 +1161,15 @@
|
|
|
1157
1161
|
>
|
|
1158
1162
|
</File>
|
|
1159
1163
|
<File
|
|
1160
|
-
RelativePath="..\libusb\
|
|
1164
|
+
RelativePath="..\libusb\version_nano.h"
|
|
1161
1165
|
>
|
|
1162
1166
|
</File>
|
|
1163
1167
|
<File
|
|
1164
1168
|
RelativePath="..\libusb\os\windows_common.h"
|
|
1165
1169
|
>
|
|
1166
1170
|
</File>
|
|
1167
|
-
</Filter>
|
|
1168
|
-
<Filter
|
|
1169
|
-
Name="Resource Files"
|
|
1170
|
-
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
|
1171
|
-
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
|
1172
|
-
>
|
|
1173
1171
|
<File
|
|
1174
|
-
RelativePath="..\libusb\
|
|
1175
|
-
>
|
|
1176
|
-
</File>
|
|
1177
|
-
<File
|
|
1178
|
-
RelativePath="..\libusb\libusb-1.0.rc"
|
|
1172
|
+
RelativePath="..\libusb\os\wince_usb.h"
|
|
1179
1173
|
>
|
|
1180
1174
|
</File>
|
|
1181
1175
|
</Filter>
|