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.
- package/.github/workflows/prebuild.yml +62 -0
- package/.gitmodules +3 -0
- package/LICENSE +7 -0
- package/Readme.md +339 -0
- package/binding.gyp +90 -0
- package/libusb/.gitattributes +11 -0
- package/libusb/.private/README.txt +5 -0
- package/libusb/.private/bd.cmd +89 -0
- package/libusb/.private/bm.sh +54 -0
- package/libusb/.private/bwince.cmd +57 -0
- package/libusb/.private/post-rewrite.sh +28 -0
- package/libusb/.private/pre-commit.sh +42 -0
- package/libusb/.private/wbs.txt +61 -0
- package/libusb/.private/wbs_wince.txt +42 -0
- package/libusb/AUTHORS +78 -0
- package/libusb/COPYING +504 -0
- package/libusb/ChangeLog +211 -0
- package/libusb/INSTALL +234 -0
- package/libusb/INSTALL_WIN.txt +73 -0
- package/libusb/Makefile.am +28 -0
- package/libusb/NEWS +2 -0
- package/libusb/PORTING +94 -0
- package/libusb/README +28 -0
- package/libusb/README.git +41 -0
- package/libusb/TODO +2 -0
- package/libusb/Xcode/common.xcconfig +49 -0
- package/libusb/Xcode/debug.xcconfig +29 -0
- package/libusb/Xcode/libusb.xcconfig +21 -0
- package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +1 -0
- package/libusb/Xcode/libusb_debug.xcconfig +21 -0
- package/libusb/Xcode/libusb_release.xcconfig +21 -0
- package/libusb/Xcode/release.xcconfig +30 -0
- package/libusb/android/README +114 -0
- package/libusb/android/jni/Android.mk +23 -0
- package/libusb/android/jni/Application.mk +24 -0
- package/libusb/android/jni/examples.mk +134 -0
- package/libusb/android/jni/libusb.mk +54 -0
- package/libusb/android/jni/tests.mk +56 -0
- package/libusb/autogen.sh +8 -0
- package/libusb/bootstrap.sh +19 -0
- package/libusb/configure.ac +304 -0
- package/libusb/doc/Makefile.am +9 -0
- package/libusb/doc/doxygen.cfg.in +1288 -0
- package/libusb/doc/libusb.png +0 -0
- package/libusb/examples/Makefile.am +19 -0
- package/libusb/examples/dpfp.c +506 -0
- package/libusb/examples/dpfp_threaded.c +544 -0
- package/libusb/examples/ezusb.c +831 -0
- package/libusb/examples/ezusb.h +120 -0
- package/libusb/examples/fxload.c +287 -0
- package/libusb/examples/getopt/getopt.c +1060 -0
- package/libusb/examples/getopt/getopt.h +180 -0
- package/libusb/examples/getopt/getopt1.c +188 -0
- package/libusb/examples/hotplugtest.c +104 -0
- package/libusb/examples/listdevs.c +71 -0
- package/libusb/examples/sam3u_benchmark.c +193 -0
- package/libusb/examples/xusb.c +1129 -0
- package/libusb/libusb/Makefile.am +75 -0
- package/libusb/libusb/core.c +2342 -0
- package/libusb/libusb/descriptor.c +1199 -0
- package/libusb/libusb/hotplug.c +327 -0
- package/libusb/libusb/hotplug.h +82 -0
- package/libusb/libusb/io.c +2631 -0
- package/libusb/libusb/libusb-1.0.def +166 -0
- package/libusb/libusb/libusb-1.0.rc +61 -0
- package/libusb/libusb/libusb.h +1998 -0
- package/libusb/libusb/libusbi.h +1040 -0
- package/libusb/libusb/os/darwin_usb.c +2009 -0
- package/libusb/libusb/os/darwin_usb.h +162 -0
- package/libusb/libusb/os/linux_netlink.c +369 -0
- package/libusb/libusb/os/linux_udev.c +307 -0
- package/libusb/libusb/os/linux_usbfs.c +2695 -0
- package/libusb/libusb/os/linux_usbfs.h +192 -0
- package/libusb/libusb/os/netbsd_usb.c +738 -0
- package/libusb/libusb/os/openbsd_usb.c +832 -0
- package/libusb/libusb/os/poll_posix.c +51 -0
- package/libusb/libusb/os/poll_posix.h +11 -0
- package/libusb/libusb/os/poll_windows.c +796 -0
- package/libusb/libusb/os/poll_windows.h +131 -0
- package/libusb/libusb/os/threads_posix.c +82 -0
- package/libusb/libusb/os/threads_posix.h +50 -0
- package/libusb/libusb/os/threads_windows.c +212 -0
- package/libusb/libusb/os/threads_windows.h +87 -0
- package/libusb/libusb/os/wince_usb.c +1032 -0
- package/libusb/libusb/os/wince_usb.h +131 -0
- package/libusb/libusb/os/windows_common.h +108 -0
- package/libusb/libusb/os/windows_usb.c +5347 -0
- package/libusb/libusb/os/windows_usb.h +971 -0
- package/libusb/libusb/strerror.c +199 -0
- package/libusb/libusb/sync.c +307 -0
- package/libusb/libusb/version.h +18 -0
- package/libusb/libusb/version_nano.h +1 -0
- package/libusb/libusb-1.0.pc.in +11 -0
- package/libusb/msvc/config.h +50 -0
- package/libusb/msvc/ddk_build.cmd +175 -0
- package/libusb/msvc/errno.h +102 -0
- package/libusb/msvc/fxload_2010.vcxproj +170 -0
- package/libusb/msvc/fxload_2010.vcxproj.filters +25 -0
- package/libusb/msvc/fxload_2012.vcxproj +174 -0
- package/libusb/msvc/fxload_2012.vcxproj.filters +25 -0
- package/libusb/msvc/fxload_2013.vcxproj +174 -0
- package/libusb/msvc/fxload_sources +23 -0
- package/libusb/msvc/getopt_2005.vcproj +288 -0
- package/libusb/msvc/getopt_2010.vcxproj +131 -0
- package/libusb/msvc/getopt_2010.vcxproj.filters +26 -0
- package/libusb/msvc/getopt_2012.vcxproj +136 -0
- package/libusb/msvc/getopt_2012.vcxproj.filters +26 -0
- package/libusb/msvc/getopt_2013.vcxproj +136 -0
- package/libusb/msvc/getopt_sources +20 -0
- package/libusb/msvc/hotplugtest_2010.vcxproj +163 -0
- package/libusb/msvc/hotplugtest_2010.vcxproj.filters +14 -0
- package/libusb/msvc/hotplugtest_2012.vcxproj +167 -0
- package/libusb/msvc/hotplugtest_2012.vcxproj.filters +14 -0
- package/libusb/msvc/hotplugtest_2013.vcxproj +167 -0
- package/libusb/msvc/hotplugtest_sources +20 -0
- package/libusb/msvc/inttypes.h +295 -0
- package/libusb/msvc/libusb.dsw +71 -0
- package/libusb/msvc/libusb_2005.sln +95 -0
- package/libusb/msvc/libusb_2010.sln +94 -0
- package/libusb/msvc/libusb_2012.sln +94 -0
- package/libusb/msvc/libusb_2013.sln +100 -0
- package/libusb/msvc/libusb_2015.sln +100 -0
- package/libusb/msvc/libusb_dll.dsp +194 -0
- package/libusb/msvc/libusb_dll_2005.vcproj +436 -0
- package/libusb/msvc/libusb_dll_2010.vcxproj +170 -0
- package/libusb/msvc/libusb_dll_2010.vcxproj.filters +81 -0
- package/libusb/msvc/libusb_dll_2012.vcxproj +175 -0
- package/libusb/msvc/libusb_dll_2012.vcxproj.filters +84 -0
- package/libusb/msvc/libusb_dll_2013.vcxproj +175 -0
- package/libusb/msvc/libusb_dll_wince.vcproj +1243 -0
- package/libusb/msvc/libusb_sources +38 -0
- package/libusb/msvc/libusb_static.dsp +174 -0
- package/libusb/msvc/libusb_static_2005.vcproj +362 -0
- package/libusb/msvc/libusb_static_2010.vcxproj +156 -0
- package/libusb/msvc/libusb_static_2010.vcxproj.filters +74 -0
- package/libusb/msvc/libusb_static_2012.vcxproj +160 -0
- package/libusb/msvc/libusb_static_2012.vcxproj.filters +74 -0
- package/libusb/msvc/libusb_static_2013.vcxproj +160 -0
- package/libusb/msvc/libusb_static_wince.vcproj +1185 -0
- package/libusb/msvc/libusb_wince.sln +246 -0
- package/libusb/msvc/listdevs.dsp +103 -0
- package/libusb/msvc/listdevs_2005.vcproj +360 -0
- package/libusb/msvc/listdevs_2010.vcxproj +165 -0
- package/libusb/msvc/listdevs_2010.vcxproj.filters +14 -0
- package/libusb/msvc/listdevs_2012.vcxproj +169 -0
- package/libusb/msvc/listdevs_2012.vcxproj.filters +14 -0
- package/libusb/msvc/listdevs_2013.vcxproj +169 -0
- package/libusb/msvc/listdevs_sources +19 -0
- package/libusb/msvc/listdevs_wince.vcproj +1120 -0
- package/libusb/msvc/missing.c +80 -0
- package/libusb/msvc/missing.h +32 -0
- package/libusb/msvc/stdint.h +256 -0
- package/libusb/msvc/stress_2005.vcproj +390 -0
- package/libusb/msvc/stress_2010.vcxproj +167 -0
- package/libusb/msvc/stress_2010.vcxproj.filters +25 -0
- package/libusb/msvc/stress_2012.vcxproj +171 -0
- package/libusb/msvc/stress_2012.vcxproj.filters +25 -0
- package/libusb/msvc/stress_2013.vcxproj +171 -0
- package/libusb/msvc/stress_wince.vcproj +1128 -0
- package/libusb/msvc/xusb.dsp +102 -0
- package/libusb/msvc/xusb_2005.vcproj +344 -0
- package/libusb/msvc/xusb_2010.vcxproj +163 -0
- package/libusb/msvc/xusb_2010.vcxproj.filters +14 -0
- package/libusb/msvc/xusb_2012.vcxproj +167 -0
- package/libusb/msvc/xusb_2012.vcxproj.filters +14 -0
- package/libusb/msvc/xusb_2013.vcxproj +167 -0
- package/libusb/msvc/xusb_sources +20 -0
- package/libusb/msvc/xusb_wince.vcproj +1120 -0
- package/libusb/tests/Makefile.am +6 -0
- package/libusb/tests/libusb_testlib.h +107 -0
- package/libusb/tests/stress.c +160 -0
- package/libusb/tests/testlib.c +281 -0
- package/libusb.gypi +136 -0
- package/libusb_config/config.h +1 -0
- package/package.json +69 -0
- package/src/device.cc +412 -0
- package/src/helpers.h +64 -0
- package/src/node_usb.cc +319 -0
- package/src/node_usb.h +120 -0
- package/src/transfer.cc +148 -0
- package/src/uv_async_queue.h +33 -0
- package/test/usb.coffee +191 -0
- package/usb.js +524 -0
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
LIBRARY "libusb-1.0.dll"
|
|
2
|
+
EXPORTS
|
|
3
|
+
libusb_alloc_streams
|
|
4
|
+
libusb_alloc_streams@16 = libusb_alloc_streams
|
|
5
|
+
libusb_alloc_transfer
|
|
6
|
+
libusb_alloc_transfer@4 = libusb_alloc_transfer
|
|
7
|
+
libusb_attach_kernel_driver
|
|
8
|
+
libusb_attach_kernel_driver@8 = libusb_attach_kernel_driver
|
|
9
|
+
libusb_bulk_transfer
|
|
10
|
+
libusb_bulk_transfer@24 = libusb_bulk_transfer
|
|
11
|
+
libusb_cancel_transfer
|
|
12
|
+
libusb_cancel_transfer@4 = libusb_cancel_transfer
|
|
13
|
+
libusb_claim_interface
|
|
14
|
+
libusb_claim_interface@8 = libusb_claim_interface
|
|
15
|
+
libusb_clear_halt
|
|
16
|
+
libusb_clear_halt@8 = libusb_clear_halt
|
|
17
|
+
libusb_close
|
|
18
|
+
libusb_close@4 = libusb_close
|
|
19
|
+
libusb_control_transfer
|
|
20
|
+
libusb_control_transfer@32 = libusb_control_transfer
|
|
21
|
+
libusb_detach_kernel_driver
|
|
22
|
+
libusb_detach_kernel_driver@8 = libusb_detach_kernel_driver
|
|
23
|
+
libusb_error_name
|
|
24
|
+
libusb_error_name@4 = libusb_error_name
|
|
25
|
+
libusb_event_handler_active
|
|
26
|
+
libusb_event_handler_active@4 = libusb_event_handler_active
|
|
27
|
+
libusb_event_handling_ok
|
|
28
|
+
libusb_event_handling_ok@4 = libusb_event_handling_ok
|
|
29
|
+
libusb_exit
|
|
30
|
+
libusb_exit@4 = libusb_exit
|
|
31
|
+
libusb_free_bos_descriptor
|
|
32
|
+
libusb_free_bos_descriptor@4 = libusb_free_bos_descriptor
|
|
33
|
+
libusb_free_config_descriptor
|
|
34
|
+
libusb_free_config_descriptor@4 = libusb_free_config_descriptor
|
|
35
|
+
libusb_free_container_id_descriptor
|
|
36
|
+
libusb_free_container_id_descriptor@4 = libusb_free_container_id_descriptor
|
|
37
|
+
libusb_free_device_list
|
|
38
|
+
libusb_free_device_list@8 = libusb_free_device_list
|
|
39
|
+
libusb_free_ss_endpoint_companion_descriptor
|
|
40
|
+
libusb_free_ss_endpoint_companion_descriptor@4 = libusb_free_ss_endpoint_companion_descriptor
|
|
41
|
+
libusb_free_ss_usb_device_capability_descriptor
|
|
42
|
+
libusb_free_ss_usb_device_capability_descriptor@4 = libusb_free_ss_usb_device_capability_descriptor
|
|
43
|
+
libusb_free_streams
|
|
44
|
+
libusb_free_streams@12 = libusb_free_streams
|
|
45
|
+
libusb_free_transfer
|
|
46
|
+
libusb_free_transfer@4 = libusb_free_transfer
|
|
47
|
+
libusb_free_usb_2_0_extension_descriptor
|
|
48
|
+
libusb_free_usb_2_0_extension_descriptor@4 = libusb_free_usb_2_0_extension_descriptor
|
|
49
|
+
libusb_get_active_config_descriptor
|
|
50
|
+
libusb_get_active_config_descriptor@8 = libusb_get_active_config_descriptor
|
|
51
|
+
libusb_get_bos_descriptor
|
|
52
|
+
libusb_get_bos_descriptor@8 = libusb_get_bos_descriptor
|
|
53
|
+
libusb_get_bus_number
|
|
54
|
+
libusb_get_bus_number@4 = libusb_get_bus_number
|
|
55
|
+
libusb_get_config_descriptor
|
|
56
|
+
libusb_get_config_descriptor@12 = libusb_get_config_descriptor
|
|
57
|
+
libusb_get_config_descriptor_by_value
|
|
58
|
+
libusb_get_config_descriptor_by_value@12 = libusb_get_config_descriptor_by_value
|
|
59
|
+
libusb_get_configuration
|
|
60
|
+
libusb_get_configuration@8 = libusb_get_configuration
|
|
61
|
+
libusb_get_container_id_descriptor
|
|
62
|
+
libusb_get_container_id_descriptor@12 = libusb_get_container_id_descriptor
|
|
63
|
+
libusb_get_device
|
|
64
|
+
libusb_get_device@4 = libusb_get_device
|
|
65
|
+
libusb_get_device_address
|
|
66
|
+
libusb_get_device_address@4 = libusb_get_device_address
|
|
67
|
+
libusb_get_device_descriptor
|
|
68
|
+
libusb_get_device_descriptor@8 = libusb_get_device_descriptor
|
|
69
|
+
libusb_get_device_list
|
|
70
|
+
libusb_get_device_list@8 = libusb_get_device_list
|
|
71
|
+
libusb_get_device_speed
|
|
72
|
+
libusb_get_device_speed@4 = libusb_get_device_speed
|
|
73
|
+
libusb_get_max_iso_packet_size
|
|
74
|
+
libusb_get_max_iso_packet_size@8 = libusb_get_max_iso_packet_size
|
|
75
|
+
libusb_get_max_packet_size
|
|
76
|
+
libusb_get_max_packet_size@8 = libusb_get_max_packet_size
|
|
77
|
+
libusb_get_next_timeout
|
|
78
|
+
libusb_get_next_timeout@8 = libusb_get_next_timeout
|
|
79
|
+
libusb_get_parent
|
|
80
|
+
libusb_get_parent@4 = libusb_get_parent
|
|
81
|
+
libusb_get_pollfds
|
|
82
|
+
libusb_get_pollfds@4 = libusb_get_pollfds
|
|
83
|
+
libusb_get_port_number
|
|
84
|
+
libusb_get_port_number@4 = libusb_get_port_number
|
|
85
|
+
libusb_get_port_numbers
|
|
86
|
+
libusb_get_port_numbers@12 = libusb_get_port_numbers
|
|
87
|
+
libusb_get_port_path
|
|
88
|
+
libusb_get_port_path@16 = libusb_get_port_path
|
|
89
|
+
libusb_get_ss_endpoint_companion_descriptor
|
|
90
|
+
libusb_get_ss_endpoint_companion_descriptor@12 = libusb_get_ss_endpoint_companion_descriptor
|
|
91
|
+
libusb_get_ss_usb_device_capability_descriptor
|
|
92
|
+
libusb_get_ss_usb_device_capability_descriptor@12 = libusb_get_ss_usb_device_capability_descriptor
|
|
93
|
+
libusb_get_string_descriptor_ascii
|
|
94
|
+
libusb_get_string_descriptor_ascii@16 = libusb_get_string_descriptor_ascii
|
|
95
|
+
libusb_get_usb_2_0_extension_descriptor
|
|
96
|
+
libusb_get_usb_2_0_extension_descriptor@12 = libusb_get_usb_2_0_extension_descriptor
|
|
97
|
+
libusb_get_version
|
|
98
|
+
libusb_get_version@0 = libusb_get_version
|
|
99
|
+
libusb_handle_events
|
|
100
|
+
libusb_handle_events@4 = libusb_handle_events
|
|
101
|
+
libusb_handle_events_completed
|
|
102
|
+
libusb_handle_events_completed@8 = libusb_handle_events_completed
|
|
103
|
+
libusb_handle_events_locked
|
|
104
|
+
libusb_handle_events_locked@8 = libusb_handle_events_locked
|
|
105
|
+
libusb_handle_events_timeout
|
|
106
|
+
libusb_handle_events_timeout@8 = libusb_handle_events_timeout
|
|
107
|
+
libusb_handle_events_timeout_completed
|
|
108
|
+
libusb_handle_events_timeout_completed@12 = libusb_handle_events_timeout_completed
|
|
109
|
+
libusb_has_capability
|
|
110
|
+
libusb_has_capability@4 = libusb_has_capability
|
|
111
|
+
libusb_hotplug_deregister_callback
|
|
112
|
+
libusb_hotplug_deregister_callback@8 = libusb_hotplug_deregister_callback
|
|
113
|
+
libusb_hotplug_register_callback
|
|
114
|
+
libusb_hotplug_register_callback@36 = libusb_hotplug_register_callback
|
|
115
|
+
libusb_init
|
|
116
|
+
libusb_init@4 = libusb_init
|
|
117
|
+
libusb_interrupt_transfer
|
|
118
|
+
libusb_interrupt_transfer@24 = libusb_interrupt_transfer
|
|
119
|
+
libusb_kernel_driver_active
|
|
120
|
+
libusb_kernel_driver_active@8 = libusb_kernel_driver_active
|
|
121
|
+
libusb_lock_event_waiters
|
|
122
|
+
libusb_lock_event_waiters@4 = libusb_lock_event_waiters
|
|
123
|
+
libusb_lock_events
|
|
124
|
+
libusb_lock_events@4 = libusb_lock_events
|
|
125
|
+
libusb_open
|
|
126
|
+
libusb_open@8 = libusb_open
|
|
127
|
+
libusb_open_device_with_vid_pid
|
|
128
|
+
libusb_open_device_with_vid_pid@12 = libusb_open_device_with_vid_pid
|
|
129
|
+
libusb_pollfds_handle_timeouts
|
|
130
|
+
libusb_pollfds_handle_timeouts@4 = libusb_pollfds_handle_timeouts
|
|
131
|
+
libusb_ref_device
|
|
132
|
+
libusb_ref_device@4 = libusb_ref_device
|
|
133
|
+
libusb_release_interface
|
|
134
|
+
libusb_release_interface@8 = libusb_release_interface
|
|
135
|
+
libusb_reset_device
|
|
136
|
+
libusb_reset_device@4 = libusb_reset_device
|
|
137
|
+
libusb_set_auto_detach_kernel_driver
|
|
138
|
+
libusb_set_auto_detach_kernel_driver@8 = libusb_set_auto_detach_kernel_driver
|
|
139
|
+
libusb_set_configuration
|
|
140
|
+
libusb_set_configuration@8 = libusb_set_configuration
|
|
141
|
+
libusb_set_debug
|
|
142
|
+
libusb_set_debug@8 = libusb_set_debug
|
|
143
|
+
libusb_set_interface_alt_setting
|
|
144
|
+
libusb_set_interface_alt_setting@12 = libusb_set_interface_alt_setting
|
|
145
|
+
libusb_set_pollfd_notifiers
|
|
146
|
+
libusb_set_pollfd_notifiers@16 = libusb_set_pollfd_notifiers
|
|
147
|
+
libusb_setlocale
|
|
148
|
+
libusb_setlocale@4 = libusb_setlocale
|
|
149
|
+
libusb_strerror
|
|
150
|
+
libusb_strerror@4 = libusb_strerror
|
|
151
|
+
libusb_submit_transfer
|
|
152
|
+
libusb_submit_transfer@4 = libusb_submit_transfer
|
|
153
|
+
libusb_transfer_get_stream_id
|
|
154
|
+
libusb_transfer_get_stream_id@4 = libusb_transfer_get_stream_id
|
|
155
|
+
libusb_transfer_set_stream_id
|
|
156
|
+
libusb_transfer_set_stream_id@8 = libusb_transfer_set_stream_id
|
|
157
|
+
libusb_try_lock_events
|
|
158
|
+
libusb_try_lock_events@4 = libusb_try_lock_events
|
|
159
|
+
libusb_unlock_event_waiters
|
|
160
|
+
libusb_unlock_event_waiters@4 = libusb_unlock_event_waiters
|
|
161
|
+
libusb_unlock_events
|
|
162
|
+
libusb_unlock_events@4 = libusb_unlock_events
|
|
163
|
+
libusb_unref_device
|
|
164
|
+
libusb_unref_device@4 = libusb_unref_device
|
|
165
|
+
libusb_wait_for_event
|
|
166
|
+
libusb_wait_for_event@8 = libusb_wait_for_event
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* For Windows: input this file to the Resoure Compiler to produce a binary
|
|
3
|
+
* .res file. This is then embedded in the resultant library (like any other
|
|
4
|
+
* compilation object).
|
|
5
|
+
* The information can then be queried using standard APIs and can also be
|
|
6
|
+
* viewed with utilities such as Windows Explorer.
|
|
7
|
+
*/
|
|
8
|
+
#ifndef _WIN32_WCE
|
|
9
|
+
#include "winresrc.h"
|
|
10
|
+
#endif
|
|
11
|
+
|
|
12
|
+
#include "version.h"
|
|
13
|
+
#ifndef LIBUSB_VERSIONSTRING
|
|
14
|
+
#define LU_STR(s) #s
|
|
15
|
+
#define LU_XSTR(s) LU_STR(s)
|
|
16
|
+
#if LIBUSB_NANO > 0
|
|
17
|
+
#define LIBUSB_VERSIONSTRING \
|
|
18
|
+
LU_XSTR(LIBUSB_MAJOR) "." LU_XSTR(LIBUSB_MINOR) "." \
|
|
19
|
+
LU_XSTR(LIBUSB_MICRO) "." LU_XSTR(LIBUSB_NANO) LIBUSB_RC "\0"
|
|
20
|
+
#else
|
|
21
|
+
#define LIBUSB_VERSIONSTRING \
|
|
22
|
+
LU_XSTR(LIBUSB_MAJOR) "." LU_XSTR(LIBUSB_MINOR) "." \
|
|
23
|
+
LU_XSTR(LIBUSB_MICRO) LIBUSB_RC "\0"
|
|
24
|
+
#endif
|
|
25
|
+
#endif
|
|
26
|
+
|
|
27
|
+
VS_VERSION_INFO VERSIONINFO
|
|
28
|
+
FILEVERSION LIBUSB_MAJOR,LIBUSB_MINOR,LIBUSB_MICRO,LIBUSB_NANO
|
|
29
|
+
PRODUCTVERSION LIBUSB_MAJOR,LIBUSB_MINOR,LIBUSB_MICRO,LIBUSB_NANO
|
|
30
|
+
FILEFLAGSMASK 0x3fL
|
|
31
|
+
#ifdef _DEBUG
|
|
32
|
+
FILEFLAGS 0x1L
|
|
33
|
+
#else
|
|
34
|
+
FILEFLAGS 0x0L
|
|
35
|
+
#endif
|
|
36
|
+
FILEOS 0x40004L
|
|
37
|
+
FILETYPE 0x2L
|
|
38
|
+
FILESUBTYPE 0x0L
|
|
39
|
+
BEGIN
|
|
40
|
+
BLOCK "StringFileInfo"
|
|
41
|
+
BEGIN
|
|
42
|
+
BLOCK "040904b0"
|
|
43
|
+
BEGIN
|
|
44
|
+
VALUE "CompanyName", "libusb.info\0"
|
|
45
|
+
VALUE "FileDescription", "C library for writing portable USB drivers in userspace\0"
|
|
46
|
+
VALUE "FileVersion", LIBUSB_VERSIONSTRING
|
|
47
|
+
VALUE "InternalName", "libusb\0"
|
|
48
|
+
VALUE "LegalCopyright", "See individual source files, GNU LGPL v2.1 or later.\0"
|
|
49
|
+
VALUE "LegalTrademarks", "http://www.gnu.org/licenses/lgpl-2.1.html\0"
|
|
50
|
+
VALUE "OriginalFilename", "libusb-1.0.dll\0"
|
|
51
|
+
VALUE "PrivateBuild", "\0"
|
|
52
|
+
VALUE "ProductName", "libusb-1.0\0"
|
|
53
|
+
VALUE "ProductVersion", LIBUSB_VERSIONSTRING
|
|
54
|
+
VALUE "SpecialBuild", "\0"
|
|
55
|
+
END
|
|
56
|
+
END
|
|
57
|
+
BLOCK "VarFileInfo"
|
|
58
|
+
BEGIN
|
|
59
|
+
VALUE "Translation", 0x409, 1200
|
|
60
|
+
END
|
|
61
|
+
END
|