diff --git a/UDE/README.md b/UDE/README.md new file mode 100644 index 0000000..76eed70 --- /dev/null +++ b/UDE/README.md @@ -0,0 +1,13 @@ +# USB Device Emulation (UDE) + +## Usage + +To include and link against [UDE](https://docs.microsoft.com/en-us/windows-hardware/drivers/usbcon/usb-emulated-device--ude--architecture) simply add the following snippet to your driver project: + +```xml + + + +``` + +Drop the provided `UDE.props` into the project directory and all include and linker settings will be available. Works for `KMDF` only. diff --git a/UDE/UDE.props b/UDE/UDE.props new file mode 100644 index 0000000..4ec9101 --- /dev/null +++ b/UDE/UDE.props @@ -0,0 +1,17 @@ + + + + + + <_PropertySheetDisplayName>USB Device Emulation + + + + $(DDK_INC_PATH)ucx\1.5;$(DDK_INC_PATH)ude\1.1;%(AdditionalIncludeDirectories) + + + $(DDK_LIB_PATH)ucx\1.5\ucxstub.lib;$(DDK_LIB_PATH)\ude\1.1\udecxstub.lib;%(AdditionalDependencies); + + + + \ No newline at end of file