microsoft / Windows-driver-samples

This repo contains driver samples prepared for use with Microsoft Visual Studio and the Windows Driver Kit (WDK). It contains both Universal Windows Driver and desktop-only driver samples.
Microsoft Public License
6.92k stars 4.93k forks source link

Boilerplate Text Erroneously Included in Sample Keyboard Filter Driver Doc #1166

Closed jflopezfdez closed 4 months ago

jflopezfdez commented 5 months ago

There is a mistake in the Testing section of the README.md file for the sample keyboard filter driver.


This is the callout in the current version of the README.md file. Note the callout text includes what looks like boilerplate text.

[!TIP]

Optional information to help a user be more successfulTo avoid DLL dependencies for kbftext.exe, and the need to copy additional files, select the statically linked run-time library when building.

I've created a pull request, pull request #1165, for my fix, which simply removes the initial boilerplate text and leaves the rest of the callout text intact, like so:

[!TIP]

To avoid DLL dependencies for kbftext.exe, and the need to copy additional files, select the statically linked run-time library when building.

jflopezfdez commented 4 months ago

This issue was fixed in #1165.