diff options
author | Pete Batard <pbatard@gmail.com> | 2010-03-10 13:14:51 +0000 |
---|---|---|
committer | Pete Batard <pbatard@gmail.com> | 2010-03-10 13:14:51 +0000 |
commit | fae9c17bd2405813d44186c94367d6e66d3994e6 (patch) | |
tree | 8e795a9400182bdabb61229a3791f060af1d5335 /libusb/os/driver/sources | |
parent | 4ee3179ae1e0adefc6c5d19c036c297856ebdef9 (diff) | |
download | libusb-fae9c17bd2405813d44186c94367d6e66d3994e6.tar.gz |
libusb0.sys backend integration - part 2 (Graeme Gill)c190
Diffstat (limited to 'libusb/os/driver/sources')
-rw-r--r-- | libusb/os/driver/sources | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libusb/os/driver/sources b/libusb/os/driver/sources new file mode 100644 index 0000000..7b247b1 --- /dev/null +++ b/libusb/os/driver/sources @@ -0,0 +1,33 @@ +TARGETNAME = libusb0 +TARGETPATH = obj +TARGETTYPE = DRIVER +USER_C_FLAGS = /O2 +TARGETLIBS = $(DDK_LIB_PATH)\usbd.lib +C_DEFINES = /DVERSION_MAJOR=0 /DVERSION_MINOR=1 /DVERSION_MICRO=12 \ + /DVERSION_NANO=1 /DRC_VERSION=0,1,12,1 \ + /DRC_VERSION_STR="\"0.1.12.1\"" + +SOURCES = abort_endpoint.c \ +claim_interface.c \ +clear_feature.c \ +dispatch.c \ +driver_registry.c \ +get_configuration.c \ +get_descriptor.c \ +get_interface.c \ +get_status.c \ +ioctl.c \ +libusb_driver.c \ +pnp.c \ +power.c \ +release_interface.c \ +reset_device.c \ +reset_endpoint.c \ +set_configuration.c \ +set_descriptor.c \ +set_feature.c \ +set_interface.c \ +transfer.c \ +vendor_request.c \ +driver_debug.c \ +libusb_driver_rc.rc |