1
0
mirror of https://github.com/nefarius/WDF-Utils.git synced 2024-09-16 17:39:32 +02:00
WDF-Utils/UDE/README.md

16 lines
593 B
Markdown
Raw Permalink Normal View History

2022-02-06 22:14:42 +01:00
# 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
<ImportGroup Label="PropertySheets">
<Import Project="UDE.props" />
</ImportGroup>
```
**Important:** if a `PropertySheets` group already exists, append the Import-Node(s) to that to avoid linker issues!
2022-02-06 22:14:42 +01:00
Drop the provided `UDE.props` into the project directory and all include and linker settings will be available. Works for `KMDF` only.