From 1b00aef24a42cde1827010ff7a06a4390d6abdd9 Mon Sep 17 00:00:00 2001 From: 5an7y Date: Thu, 12 Mar 2026 14:14:57 -0700 Subject: Add AI dashboard tooling for issues/PR tracking Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- repo-tools/ai/README.md | 123 +++ .../__pycache__/generate_dashboard.cpython-314.pyc | Bin 0 -> 46562 bytes repo-tools/ai/_data/issues.json | 1 + repo-tools/ai/_data/prs.json | 1 + repo-tools/ai/copilot-skill.md | 60 ++ repo-tools/ai/extra_keywords.json | 13 + repo-tools/ai/fetch_github_data.py | 96 +++ repo-tools/ai/generate_dashboard.py | 828 +++++++++++++++++++++ repo-tools/ai/output/dashboard.html | 462 ++++++++++++ 9 files changed, 1584 insertions(+) create mode 100644 repo-tools/ai/README.md create mode 100644 repo-tools/ai/__pycache__/generate_dashboard.cpython-314.pyc create mode 100644 repo-tools/ai/_data/issues.json create mode 100644 repo-tools/ai/_data/prs.json create mode 100644 repo-tools/ai/copilot-skill.md create mode 100644 repo-tools/ai/extra_keywords.json create mode 100644 repo-tools/ai/fetch_github_data.py create mode 100644 repo-tools/ai/generate_dashboard.py create mode 100644 repo-tools/ai/output/dashboard.html diff --git a/repo-tools/ai/README.md b/repo-tools/ai/README.md new file mode 100644 index 00000000..55d5fb41 --- /dev/null +++ b/repo-tools/ai/README.md @@ -0,0 +1,123 @@ +# Issues & PR Dashboard Generator + +> **Location:** `repo-tools/ai/` +> A reusable tool that generates an HTML dashboard of all open GitHub Issues and +> Pull Requests, automatically grouped by the owning team from `.github/CODEOWNERS`. + +## Quick Start + +```bash +# 1. Fetch latest data from GitHub +python repo-tools/ai/fetch_github_data.py + +# 2. Generate the dashboard +python repo-tools/ai/generate_dashboard.py + +# 3. Open it +start repo-tools/ai/output/dashboard.html # Windows +open repo-tools/ai/output/dashboard.html # macOS +``` + +## How It Works + +1. **`fetch_github_data.py`** β€” Calls the GitHub REST API to download all open + issues and PRs into `repo-tools/ai/_data/` as JSON files. +2. **`generate_dashboard.py`** β€” Parses `.github/CODEOWNERS` to build + team β†’ path mappings, classifies **each item to exactly one team** by + matching path references and keywords in the title/body, and outputs a + self-contained HTML dashboard. + +### Team Assignment Rules + +Each issue or PR is assigned to **exactly one** CODEOWNERS team using a +multi-layer matching strategy (highest priority first): + +1. **πŸ† Path detection + CODEOWNERS matching** *(highest priority)* β€” the tool + extracts file/folder paths mentioned in the issue/PR text (GitHub URLs, + file names with extensions, `.github/` references, known directory paths) + and matches them against CODEOWNERS rules using the same last-match-wins + logic GitHub uses. This is the most reliable signal. +2. **CODEOWNERS path keywords** β€” path segments from each entry + (e.g., `network/trans` β†’ team `netsec`). +3. **Repo subdirectory scanning** β€” subdirectory names under owned paths + (e.g., `KMDOD` under `/video/` β†’ team `display-kernel-devs`). +4. **Section comment names** β€” the `# Comment` lines above CODEOWNERS entries + are used as fallback context keywords. +5. **Manual overrides** β€” `extra_keywords.json` provides domain-specific terms + not derivable from paths (e.g., `wddm` β†’ `display-kernel-devs`). +6. **Normalized matching** β€” strips whitespace/separators to catch variants + like "WMI ACPI" matching path keyword `wmiacpi`. +7. **Word-boundary matching** β€” short keywords (< 4 chars) use `\bkw\b` regex + to prevent false positives like "pos" matching "posted". + +The **longest (most specific) match wins** at each layer. Items that don't +match any specific team fall back to `driver-samples-maintainers`. + +### Dashboard Features + +- **Two separate sections**: Issues tab and Pull Requests tab +- **Team overview cards** with issue/PR counts per team +- **Detected Path column** β€” shows the file/folder that triggered the team assignment +- **Filter by team** β€” click a card or use the filter buttons +- **Search** β€” free-text search across all items +- **Direct GitHub links** β€” every item links to its GitHub page + +## Files + +| File | Purpose | +|------|---------| +| `fetch_github_data.py` | Downloads issues/PRs from GitHub API | +| `generate_dashboard.py` | Classifies items and generates HTML dashboard | +| `extra_keywords.json` | Manual keyword overrides per team (editable) | +| `copilot-skill.md` | Skill definition for AI agent invocation | +| `_data/` | Downloaded JSON data (gitignored) | +| `output/` | Generated HTML dashboard (gitignored) | + +## CLI Options + +### fetch_github_data.py + +| Flag | Default | Description | +|------|---------|-------------| +| `--repo` | `microsoft/Windows-driver-samples` | GitHub repo (`OWNER/REPO`) | +| `--output-dir` | `repo-tools/ai/_data` | Where to save JSON files | + +Set `GITHUB_TOKEN` env var for authenticated access (recommended). + +### generate_dashboard.py + +| Flag | Default | Description | +|------|---------|-------------| +| `--issues` | `_data/issues.json` | Path to issues JSON | +| `--prs` | `_data/prs.json` | Path to PRs JSON | +| `--codeowners` | `../../.github/CODEOWNERS` | Path to CODEOWNERS | +| `--repo-root` | `../..` | Repo root for subdirectory scanning | +| `--extra-keywords` | `extra_keywords.json` | Manual keyword overrides | +| `--output` | `output/dashboard.html` | Output HTML path | +| `--repo-url` | `https://github.com/microsoft/Windows-driver-samples` | Repo URL for links | + +## Customizing Team Keywords + +Edit `extra_keywords.json` to add domain-specific terms: + +```json +{ + "display-kernel-devs": ["wddm", "kmdod", "display driver"], + "filesystems": ["fat"], + "netsec": ["wfp", "wfpsampler"] +} +``` + +Keys are CODEOWNERS team aliases (without `@microsoft/` prefix). + +## Using with AI Agents (Copilot Skill) + +This tool is designed to be invoked by AI agents. The recommended workflow: + +``` +1. Run: python repo-tools/ai/fetch_github_data.py +2. Run: python repo-tools/ai/generate_dashboard.py +3. The dashboard is at: repo-tools/ai/output/dashboard.html +``` + +See `copilot-skill.md` for the structured skill definition. diff --git a/repo-tools/ai/__pycache__/generate_dashboard.cpython-314.pyc b/repo-tools/ai/__pycache__/generate_dashboard.cpython-314.pyc new file mode 100644 index 00000000..4b82392a Binary files /dev/null and b/repo-tools/ai/__pycache__/generate_dashboard.cpython-314.pyc differ diff --git a/repo-tools/ai/_data/issues.json b/repo-tools/ai/_data/issues.json new file mode 100644 index 00000000..1c51262e --- /dev/null +++ b/repo-tools/ai/_data/issues.json @@ -0,0 +1 @@ +{"issues":[{"id":3772519211,"number":1342,"state":"OPEN","title":"No console output for WFPSampler","body":"The user mode WFPSampler.exe does not output any logs to the console.\n\nAfter checking the code, it seems this PR https://github.com/microsoft/Windows-driver-samples/pull/1108 simply removed the final wprintf calls in https://github.com/microsoft/Windows-driver-samples/blob/main/network/trans/WFPSampler/lib/HelperFunctions_Log.cpp for some reason ?","user":{"login":"Nehluxhes"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":1,"created_at":"2025-12-31T10:40:12Z","updated_at":"2026-01-08T11:52:41Z"},{"id":3652899541,"number":1338,"state":"OPEN","title":"[network/trans/inspect]: ICMPv6 Ping not working!","body":"### Which is the area where the sample lives?\n\n/network/trans/\n\n### Describe the issue\n\nIf you configure `BlockTraffic` to `0` and `RemoteAddressToInspect` to `2001:4860:4860::8888` (google dns) or any other IPv6 address and then ping the address it will be `Request timed out.`. If i disable or stop the driver there are successful replies.","user":{"login":"SinghNanak"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":3,"created_at":"2025-11-21T19:49:11Z","updated_at":"2026-02-10T21:17:44Z"},{"id":3463773390,"number":1330,"state":"OPEN","title":"Revive Component Firmware Update (CFU) samples","body":"If would be nice if Microsoft could revive the [Component Firmware Update (CFU)](https://learn.microsoft.com/en-us/windows-hardware/drivers/cfu/) driver documentation and driver samples to help developers get started with CFU for firmware updates.\n\nMost of the CFU documentation pages are currently referring to the https://github.com/microsoft/CFU repo that appears to be abandoned with no one responding to issues or pull requests. The project does furthermore not build with Visual Studio 2022 due to an outdated DMF submodule. \n\nCould it be possible to either revive the https://github.com/microsoft/CFU project and/or migrate it to this repo, so that it can serve as working starting-point for CFU development?","user":{"login":"forderud"},"labels":[{"name":"request","description":"","node_id":"MDU6TGFiZWwyNTA2MjM5MTA="}],"comments":0,"created_at":"2025-09-29T08:14:09Z","updated_at":"2025-10-17T11:57:27Z"},{"id":3257942232,"number":1313,"state":"OPEN","title":"ThrottleLimit calculation is incorrect on systems with more than one physical processor, breaking the build. (Added bonus: inf2cat travels through time to break the build)","body":"The `ThrottleLimit` argument is currently implemented as follows:\n\nhttps://github.com/microsoft/Windows-driver-samples/blob/7bc5255321145137d51beff5cc450932cb8db8b7/Build-SampleSet.ps1#L20-L25\n\nHowever, this CIM query actually returns an array of values representing the logical processor cound per physical socket, rather than just a single integer:\n\n```\nPS C:\\Users\\Graham> $procs = (Get-CIMInstance -Class 'CIM_Processor' -Verbose:$false).NumberOfLogicalProcessors\nPS C:\\Users\\Graham> $procs.GetType()\n\nIsPublic IsSerial Name BaseType\n-------- -------- ---- --------\nTrue True Object[] System.Array\n\nPS C:\\Users\\Graham> $procs\n56\n56\n```\n\nAs such, attempting to run the build without specifying the `-ThrottleLimit` argument results in an error when the script attempts to multiply the array by 5:\n\n```\nInvalidOperation: C:\\Users\\Graham\\source\\repos\\Windows-driver-samples\\Build-SampleSet.ps1:24\nLine |\n 24 | $ThrottleLimit = $ThrottleFactor * $LogicalProcessors\n | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n | Method invocation failed because [System.Object[]] does not contain a method named 'op_Multiply'.\n```\n\nThe code should probably be something like this instead:\n\n```ps\n$LogicalProcessorsList = (Get-CIMInstance -Class 'CIM_Processor' -Verbose:$false).NumberOfLogicalProcessors\n$LogicalProcessors = ($LogicalProcessorsList | Measure-Object -Sum).Sum\n```\n\nExcept... this doesn't really work. For some inexplicable reason, making this change causes the powershell script itself to work just fine without needing to specify `-ThrottleLimit`, but suddenly every single target fails to build due to `inf2cat.exe` exiting with a bad return code. Example error message:\n\n```\nWindows-driver-samples\\packages\\Microsoft.Windows.WDK.x64.10.0.26100.4204\\c\\build\\10.0.26100.0\\WindowsDriver.common.targets(1432,5): error MSB6006: "inf2cat.exe" exited with code -2. [C:\\Users\\Graham\\source\\repos\\Windows-driver-samples\\tools\\dv\\samples\\DV-FailDriver-WDM\\driver\\defect_toastmon.vcxproj]\n```\n\nInitially I thought that it was something downstream not liking that I got rid of it being an array, so I swapped the code to this:\n\n```ps\n$LogicalProcessorsList = (Get-CIMInstance -Class 'CIM_Processor' -Verbose:$false).NumberOfLogicalProcessors\n$LogicalProcessors = @(($LogicalProcessorsList | Measure-Object -Sum).Sum)\n```\n\nThis did not fix it, but instead I noticed that a completely random subset of projects would fail to build each time, seemingly nondeterministically.\n\nI looked into the log files and found the following:\n\n```\n Building 'defect_toastmon' with toolset 'WindowsKernelModeDriver10.0' and the 'Universal' target platform.\n Stamping x64\\Debug\\defect_toastmon.inf\n Stamping [Version] section with DriverVer=07/24/2025,0.32.47.39\n defect_toastmon.c\n wmi.c\n Generating Code...\n defect_toastmon.vcxproj -> C:\\Users\\Graham\\source\\repos\\Windows-driver-samples\\tools\\dv\\samples\\DV-FailDriver-WDM\\driver\\x64\\Debug\\defect_toastmon.sys\n Done Adding Additional Store\n Successfully signed: C:\\Users\\Graham\\source\\repos\\Windows-driver-samples\\tools\\dv\\samples\\DV-FailDriver-WDM\\driver\\x64\\Debug\\defect_toastmon.sys\n \n Driver is 'Universal'.\n ........................\n Signability test failed.\n \n Errors:\n 22.9.7: DriverVer set to a date in the future (postdated DriverVer not allowed) in defect_toastmon\\defect_toastmon.inf.\n \n Warnings:\n None\nC:\\Users\\Graham\\source\\repos\\Windows-driver-samples\\packages\\Microsoft.Windows.WDK.x64.10.0.26100.4204\\c\\build\\10.0.26100.0\\WindowsDriver.common.targets(1432,5): error MSB6006: "inf2cat.exe" exited with code -2. [C:\\Users\\Graham\\source\\repos\\Windows-driver-samples\\tools\\dv\\samples\\DV-FailDriver-WDM\\driver\\defect_toastmon.vcxproj]\n```\n\nSomehow these fixes are making inf2cat think the DriverVer is... in the future? What? I'm now deeply confused. I feel like maybe parallelism is somehow breaking the order of operations here and resulting in a weird race condition with inf2cat, but I'm very much questioning my sanity here.","user":{"login":"gsuberland"},"labels":[{"name":"bug","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzI="}],"comments":1,"created_at":"2025-07-23T23:00:42Z","updated_at":"2025-09-08T08:33:28Z"},{"id":3236965546,"number":1311,"state":"OPEN","title":"spti does not recognize NVMe drives","body":"This is the output of _spti.exe_ on a system equipped with NVMe drive:\noutput\n\n C:\\drivers\\spti.exe PhysicalDrive0 \n \n ***** STORAGE ADAPTER DESCRIPTOR DATA *****\n Version: 00000020\n TotalSize: 00000020\n MaximumTransferLength: 00200000 (bytes)\n MaximumPhysicalPages: 00000201\n TrueMaximumTransfer: 00200000 (bytes)\n AlignmentMask: 00000003\n AdapterUsesPio: True\n AdapterScansDown: False\n CommandQueueing: True\n AcceleratedTransfer: True\n Bus Type: Not Defined\n Bus Major Version: 0002\n Bus Minor Version: 0000\n \n \n \n ***** STORAGE DEVICE DESCRIPTOR DATA *****\n Version: 00000028\n TotalSize: 0000018c\n DeviceType: 00000000\n DeviceTypeModifier: 00000000\n RemovableMedia: False\n CommandQueueing: True\n Vendor Id:\n Product Id: Patriot Scorch M2\n Product Revision: E8FM12.0\n Serial Number: 6479_A71D_9228_20EB.\n Bus Type: Not Defined\n Raw Properties: None\n \n \n \n ***** Detected Alignment Mask *****\n ***** was 00000003 *****\n \n \n ***** MODE SENSE -- return all pages *****\n ***** with SenseInfo buffer *****\n \n Scsi status: 00h, Bytes returned: B0h, DataOut buffer length: 0h\n DataIn buffer length: 18h\n \n \n 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F\n ---------------------------------------------------------------\n 000 00 00 00 00 40 00 00 00 06 00 00 00 10 00 00 00\n 010 00 00 01 00 02 00 00 00 68 00 00 00 78 00 00 00\n 020 00 00 00 00 18 00 00 00 00 00 00 00 00 00 00 00\n 030 98 00 00 00 00 00 00 00 1A 00 3F 00 C0 00 00 00\n 040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 060 00 00 00 00 00 00 00 00 01 00 00 00 04 00 00 00\n 070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 090 00 00 00 00 00 00 00 00 17 00 10 00 08 0A 04 00\n 0A0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0B0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0C0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0D0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0E0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0F0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 110 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 120 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 150 00 00 00 00 00 00 00 00\n \n ***** MODE SENSE -- return all pages *****\n ***** without SenseInfo buffer *****\n \n Scsi status: 00h, Bytes returned: B0h, DataOut buffer length: 0h\n DataIn buffer length: 18h\n \n \n 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F\n ---------------------------------------------------------------\n 000 00 00 00 00 40 00 00 00 06 00 00 00 10 00 00 00\n 010 00 00 01 00 02 00 00 00 68 00 00 00 00 00 00 00\n 020 00 00 00 00 18 00 00 00 00 00 00 00 00 00 00 00\n 030 98 00 00 00 00 00 00 00 1A 00 3F 00 C0 00 00 00\n 040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 060 00 00 00 00 00 00 00 00 01 00 00 00 04 00 00 00\n 070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 090 00 00 00 00 00 00 00 00 17 00 10 00 08 0A 04 00\n 0A0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0B0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0C0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0D0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0E0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0F0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 110 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 120 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 150 00 00 00 00 00 00 00 00\n \n ***** TEST UNIT READY *****\n ***** DataInBufferLength = 0 *****\n \n Error: 87 The parameter is incorrect.\n \n \n ***** MODE SENSE -- return all pages *****\n ***** bad DataBufferOffset -- should fail *****\n \n Error: 87 The parameter is incorrect.\n \n \n ***** MODE SENSE *****\n ***** return caching mode sense page *****\n \n Scsi status: 00h, Bytes returned: B0h, DataOut buffer length: 0h\n DataIn buffer length: 18h\n \n \n 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F\n ---------------------------------------------------------------\n 000 00 00 00 00 40 00 00 00 06 00 00 00 10 00 00 00\n 010 00 00 01 00 02 00 00 00 68 00 00 00 78 00 00 00\n 020 00 00 00 00 18 00 00 00 00 00 00 00 00 00 00 00\n 030 98 00 00 00 00 00 00 00 1A 08 08 00 C0 00 00 00\n 040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 060 00 00 00 00 00 00 00 00 01 00 00 00 04 00 00 00\n 070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 090 00 00 00 00 00 00 00 00 17 00 10 00 08 0A 04 00\n 0A0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0B0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0C0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0D0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0E0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 0F0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 110 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 120 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n 150 00 00 00 00 00 00 00 00\n \n ***** WRITE DATA BUFFER operation *****\n Scsi status: 02h\n \n Sense Info -- consult SCSI spec for details\n -------------------------------------------------------------\n F0 00 05 00 00 00 00 0A 00 00 00 00 24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n \n ***** READ DATA BUFFER operation *****\n Scsi status: 02h\n \n Sense Info -- consult SCSI spec for details\n -------------------------------------------------------------\n F0 00 05 00 00 00 00 0A 00 00 00 00 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n\n\n\n_Bus Type_ must be defined. Other properties like _StorageDeviceProtocolSpecificProperty_, _StorageDeviceTemperatureProperty_ can be added.","user":{"login":"armaber"},"labels":[{"name":"bug","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzI="}],"comments":4,"created_at":"2025-07-16T18:34:29Z","updated_at":"2026-01-08T13:06:22Z"},{"id":3130125692,"number":1290,"state":"OPEN","title":"general/ioctl tips","body":"In Win11, CreateFile("\\\\\\\\.\\\\IoctlTest") must be modified to CreateFile (L"\\\\\\\\.\\\\IoctlTest"), otherwise it will prompt that the parameters are incorrect, error code:: 87","user":{"login":"ZOL4789"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":3,"created_at":"2025-06-09T12:12:51Z","updated_at":"2026-01-08T13:01:49Z"},{"id":3007049290,"number":1287,"state":"OPEN","title":"HID client driver sample?","body":"Are there any online samples for how to develop a HID client driver that speaks HID below and exposes itself as something else above?\n\nI've already examined the vhidmini2 & hidusbfx2 samples. Unfortunately, both samples expose themselves as HID devices above, which is something else than what I'm trying to do. I've also tried reading the [Minidrivers and the HID class driver](https://learn.microsoft.com/en-us/windows-hardware/drivers/hid/minidriver-operations) documentation, but remain unsure if a WDF HID minidriver is really the right approach for my problem in the first place. Any comments on that?\n\nThe request have already been posted on https://community.osr.com/t/hid-client-driver-sample/59583 , but I did not receive any response there.","user":{"login":"forderud"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":2,"created_at":"2025-04-20T14:26:04Z","updated_at":"2026-01-08T12:54:02Z"},{"id":2956525485,"number":1279,"state":"OPEN","title":"Pin tj-actions/changed-files to commit hash","body":"Per GitHub security recommendations, all (3rd-party) actions should be pinned to a commit hash because these version tags are mutable.\n\nConsider adding codeql to this repo.\n\nhttps://github.com/github/codeql/blob/main/actions/ql/src/Security/CWE-829/UnpinnedActionsTag.md\n\n _Originally posted by @joebowbeer in [d504c54](https://github.com/microsoft/Windows-driver-samples/commit/d504c54cf595e9185617a3e611e417617be8c0b8#r154501982)_","user":{"login":"joebowbeer"},"labels":[{"name":"request","description":"","node_id":"MDU6TGFiZWwyNTA2MjM5MTA="}],"comments":0,"created_at":"2025-03-28T15:45:37Z","updated_at":"2025-06-09T12:24:36Z"},{"id":2909206853,"number":1270,"state":"OPEN","title":"KMDOD sample is broken and does not load","body":"Broken by merge of #1088\n\n@JakobL-MSFT This change is broken. You cannot replace `ExAllocatePoolWithTag` with `ExAllocatePool2` directly because the argument type changed from `POOL_TYPE` to `POOL_FLAGS`. The driver will refuse to load with Code 31 (STATUS_NO_MEMORY). May I ask how this change was tested by Microsoft before being merged?\n\n_Originally posted by @osy in https://github.com/microsoft/Windows-driver-samples/issues/1088#issuecomment-2557679709_\n ","user":{"login":"osy"},"labels":[{"name":"bug","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzI="}],"comments":2,"created_at":"2025-03-11T05:43:21Z","updated_at":"2026-01-08T11:59:11Z"},{"id":2822936306,"number":1266,"state":"OPEN","title":"Windows-driver-samples/tree/main/network/trans/stmedit","body":"I could build stmedit driver in VS 2022, and deployed to target computer. But it failed to start \n\n****Here are the install details**\n**C:\\Windows\\System32>sc.exe create stmedit binpath= c:\\windows\\system32\\stmedit.sys\n[SC] CreateService SUCCESS\n\nC:\\Windows\\System32>sc start stmedit\n[SC] StartService FAILED 2:\n\nThe system cannot find the file specified.****\n\nNot sure why its failed, any help appreciated\n\nHere is my .INF file \n\n;;;\n;;; Copyright (c) Microsoft Corporation. All rights reserved\n;;;\n;;; Abstract:\n;;; Stream Edit Callout sample driver install configuration.\n;;;\n\n[Version]\n Signature = "$Windows NT$"\n Class = WFPCALLOUTS\n ClassGuid = {57465043-616C-6C6F-7574-5F636C617373}\n Provider = %Contoso%\n CatalogFile = StmEdit.cat\n DriverVer = 01/31/2025,11.26.27.665\n PnpLockdown = 1\n\n[SourceDisksNames]\n 1 = %StmEditDisk%,,,""\n\n[SourceDisksFiles]\n StmEdit.sys = 1,,\n\n[DestinationDirs]\n StmEdit.DriverFiles = 12 ; %WinDir%\\System32\\Drivers\n\n[DefaultInstall.NTamd64]\n OptionDesc = %StmEditServiceDesc%\n CopyFiles = StmEdit.DriverFiles\n\n[DefaultInstall.NTamd64.Services]\n AddService = %StmEditServiceName%,,StmEdit.Service\n\n\n[StmEdit.DriverFiles]\n StmEdit.sys,,,0x00000040 ; COPYFLG_OVERWRITE_OLDER_ONLY\n\n[StmEdit.Service]\n DisplayName = %StmEditServiceName%\n Description = %StmEditServiceDesc%\n ServiceType = 1 ; SERVICE_KERNEL_DRIVER\n StartType = 3 ; SERVICE_DEMAND_START\n ErrorControl = 1 ; SERVICE_ERROR_NORMAL\n ServiceBinary = %12%\\StmEdit.sys ; %WinDir%\\System32\\Drivers\\StmEdit.sys\n AddReg = StmEdit.AddRegistry\n\n[StmEdit.AddRegistry]\n HKR,"Parameters","InspectionLocalPort",0x00010001,"8888" ; FLG_ADDREG_TYPE_DWORD\n HKR,"Parameters","InspectionRemotePort",0x00000000,"0" ; FLG_ADDREG_TYPE_SZ\n\n[Strings]\n Contoso = "Contoso Ltd."\n StmEditDisk = "Stream Edit Installation Disk"\n StmEditServiceDesc = "Stream Edit Callout Driver"\n StmEditServiceName = "StmEdit"\n","user":{"login":"jdaruja"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":3,"created_at":"2025-01-31T09:57:13Z","updated_at":"2026-02-10T21:15:59Z"},{"id":2819881551,"number":1265,"state":"OPEN","title":"Capturing and Processing Audio from a Physical Microphone to a Virtual Mic (SimpleAudioSample)","body":"Capture audio from a physical microphone, process it, and transmit the output to a virtual microphone for seamless integration.","user":{"login":"zardamhussain"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":3,"created_at":"2025-01-30T04:36:54Z","updated_at":"2026-01-08T12:52:29Z"},{"id":2781399174,"number":1249,"state":"OPEN","title":"Change MiniFilter: Is the PreCreate operation comment correct?","body":"Is the following comment in the example Change MiniFilter [CgPreCreate](https://github.com/microsoft/Windows-driver-samples/blob/main/filesys/miniFilter/change/change.c#L1105) method correct?\n\n//\n// Return FLT_PREOP_SYNCHRONIZE at PreCreate due to\n// some callback of PostCreate may be at DPC level.\n// eResource is required at level < DPC.\n//\n\nThe Microsoft documentation mentions that PostCreate will always be called at PASSIVE_LEVEL - [ref](https://learn.microsoft.com/en-us/windows-hardware/drivers/ifs/writing-postoperation-callback-routines#:~:text=Post%2Dcreate%20callback%20routines%20are%20called%20at%20IRQL%20%3D%20PASSIVE_LEVEL%2C%20in%20the%20context%20of%20the%20thread%20that%20originated%20the%20IRP_MJ_CREATE%20operation).\n\nAlso, the Microsoft documentation specifically for FLT_PREOP_SYNCHRONIZE states that PreCreate shouldn't return FLT_PREOP_SYNCHRONIZE, as Create operations are already synchronized - [ref](https://learn.microsoft.com/en-us/windows-hardware/drivers/ifs/returning-flt-preop-synchronize#:~:text=Filters%20should%20not%20return%20FLT_PREOP_SYNCHRONIZE%20for%20create%20operations%2C%20because%20these%20operations%20are%20already%20synchronized%20by%20Filter%20Manager.).\n\nI see a comment on this method in the past, but it looks to be targeting a different comment - [Issue 151](https://github.com/microsoft/Windows-driver-samples/issues/151).","user":{"login":"johnwallsmsft"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":2,"created_at":"2025-01-10T23:22:24Z","updated_at":"2026-01-08T11:54:54Z"},{"id":2724666208,"number":1243,"state":"OPEN","title":"Missing Communication Ports Option on Windows 11 ARM","body":"### Steps to reproduce:\n1. Open **Device Manager**.\n2. Navigate to **Action > Add legacy hardware**.\n3. Select **Install the hardware that I manually select from a list (Advanced)**.\n4. Choose **Ports (COM & LPT)**.\n\n### Expected behavior:\nThe **Communication Ports** option should be available to configure COM ports.\n\n### Actual behavior:\nThe **Communication Ports** option is not displayed on Windows 11 ARM devices because the required drivers, **serial.sys** and **serenum.sys**, are missing from the **system32\\drivers** directory.\n\n### Question:\nIs there any plan to include these drivers or provide a solution for enabling COM ports on Windows 11 ARM?\n\n### Additional context:\nOther people have also asked this question in the community: [I want to use legacy serial line to connect old devices](https://learn.microsoft.com/en-us/answers/questions/1495641/i-want-to-use-legacy-serial-line-to-connect-old-de), but there hasn't been any substantial response. It would be nice to have some acknowledgment from Microsoft that this discrepancy exists as a first step, before they can take further steps to fix it!\n","user":{"login":"kasperk81"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":2,"created_at":"2024-12-07T15:09:13Z","updated_at":"2025-11-19T23:45:51Z"},{"id":2407549646,"number":1197,"state":"OPEN","title":"Wi-Fi: WiFiCx reference driver","body":"Hi, \n\nStarting from Windows11, WDI miniport driver is deprecated and WiFiCx should be used, https://learn.microsoft.com/en-us/windows-hardware/drivers/netcx/writing-a-wificx-client-driver but I don't see any reference driver, can you please add to the network/wlan folder?","user":{"login":"krish2718"},"labels":[{"name":"request","description":"","node_id":"MDU6TGFiZWwyNTA2MjM5MTA="}],"comments":7,"created_at":"2024-07-14T18:34:26Z","updated_at":"2025-09-29T19:28:48Z"},{"id":2360645899,"number":1185,"state":"OPEN","title":"USB Device Emulation (UDE) samples","body":"If would be nice if Microsoft could provide official samples of [USB device emulation (UDE)](https://learn.microsoft.com/en-us/windows-hardware/drivers/usbcon/developing-windows-drivers-for-emulated-usb-host-controllers-and-devices) drivers to help developers get started with this powerful technology.\n\nI'm already aware of the code snippets on [Write a UDE client driver](https://learn.microsoft.com/en-us/windows-hardware/drivers/usbcon/writing-a-ude-client-driver). There's also a sample project on https://github.com/microsoft/UDE , but it seem like an abandoned project. The project is furthermore lacking files required for it to build and no-one are responding to reported issues.\n\nCould it be possible to either revive the https://github.com/microsoft/UDE project and/or migrate it to this repo, so that it can serve as working starting-point for UDE driver development?","user":{"login":"forderud"},"labels":[{"name":"request","description":"","node_id":"MDU6TGFiZWwyNTA2MjM5MTA="}],"comments":4,"created_at":"2024-06-18T20:24:07Z","updated_at":"2026-01-08T13:07:08Z"},{"id":2337888244,"number":1177,"state":"OPEN","title":"[bluetooth/bthecho] Unable to build bthecho","body":"When build the bthecho sample as described in README I get error\n```\n'BthEchoSampleSrv' is reserved\n'BthEchoSampleCli' is reserved\n```\n\n![image](https://github.com/microsoft/Windows-driver-samples/assets/30986874/97493110-a0b7-41c3-8081-7a861cf768e8)\n\n# BthEchoSampleCli.inx file:\n \nhttps://github.com/microsoft/Windows-driver-samples/blob/0038767e5a3f27d464d20f2d4b97f607e58aac5d/bluetooth/bthecho/bthcli/sys/BthEchoSampleCli.inx#L56\n\nhttps://github.com/microsoft/Windows-driver-samples/blob/0038767e5a3f27d464d20f2d4b97f607e58aac5d/bluetooth/bthecho/bthcli/sys/BthEchoSampleCli.inx#L67\n\n\n# BthEchoSampleSvr.inx file:\n\nhttps://github.com/microsoft/Windows-driver-samples/blob/0038767e5a3f27d464d20f2d4b97f607e58aac5d/bluetooth/bthecho/bthsrv/sys/BthEchoSampleSrv.inx#L56\n\nhttps://github.com/microsoft/Windows-driver-samples/blob/0038767e5a3f27d464d20f2d4b97f607e58aac5d/bluetooth/bthecho/bthsrv/sys/BthEchoSampleSrv.inx#L67","user":{"login":"steam3d"},"labels":[{"name":"bug","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzI="}],"comments":5,"created_at":"2024-06-06T10:15:36Z","updated_at":"2026-01-08T13:44:01Z"},{"id":2206823380,"number":1146,"state":"OPEN","title":"WMI ACPI object conversion rules","body":"The example WMI ACPI code contains no information on how ACPI objects are serialized into the WMI buffer.\nAccording to [this article](https://learn.microsoft.com/en-us/windows-hardware/drivers/kernel/driver-defined-wmi-data-items), driver operate on plain WMI buffers for exchanging data.\n\nSo far i found out that:\n\n- ACPI integers seem to be converted into 32 bit WMI integers (even if they are 64 bit long)\n- ACPI buffers are copied as-is\n- ACPI strings are converted into WMI strings\n\nWhat i do not know is how ACPI Packages are processed and if the ACPI-WMI mapper takes the alignment of the WMI data items into account. Would it be possible to write a short guide about ACPI object conversion rules for firmware developers?\n\nThanks,\nArmin Wolf","user":{"login":"Wer-Wolf"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":11,"created_at":"2024-03-25T22:21:21Z","updated_at":"2026-01-08T11:57:58Z"},{"id":2087664219,"number":1077,"state":"OPEN","title":"AVSSAMP example not working","body":"hi, thanks for these samples, I would like to create a virtual camera with both video & audio, and perhaps some decoding functions\n\navshws working for me but got no sound, then I try avssamp. it builds successfuly, but not working.\n\nI am using win11, got windows driver kit 10 installed, and have the cer file registered to root\nafter that i tried:\n1. using hdwwiz, after choosing inf file, got no option to continue\n![1090864483](https://github.com/microsoft/Windows-driver-samples/assets/9416410/34c2d3b3-38b1-44b4-87f5-8636789e597e)\n\n2. try using devcon to register, it succeed, but unable to play\n\n![1066560444](https://github.com/microsoft/Windows-driver-samples/assets/9416410/26e24428-3ee4-45c0-9f75-24bd1ab77c65)\n\n\n![1452378375](https://github.com/microsoft/Windows-driver-samples/assets/9416410/fbc44626-7d62-4869-a11e-2c41cfa1e998)\n\ni created a avssamp.wav with my ffmpeg using pcm16le format, 1 channel, 44100hz, im sure it's valid\n\n![343203343](https://github.com/microsoft/Windows-driver-samples/assets/9416410/7729d32f-9759-4c43-9a81-149761d6efcd)\n\n\ncould you let me know if anything I config wrong","user":{"login":"shiqifeng2000"},"labels":[{"name":"bug","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzI="}],"comments":6,"created_at":"2024-01-18T07:13:23Z","updated_at":"2025-11-11T09:28:31Z"},{"id":2078629330,"number":1070,"state":"OPEN","title":"FAT should probably use CcSetFileSizes Ex","body":"As per https://github.com/MicrosoftDocs/windows-driver-docs-ddi/issues/1515 Under some versions of Windows `CcSetFilesSizes` calls directly in to `CcSetFileSizesEx` and _ignores any error status it returns_.\n\nBest practice would seems to suggest that the code should use the ex version and check the status","user":{"login":"rodwiddowson"},"labels":[{"name":"request","description":"","node_id":"MDU6TGFiZWwyNTA2MjM5MTA="}],"comments":2,"created_at":"2024-01-12T11:27:22Z","updated_at":"2026-01-08T11:54:15Z"},{"id":1902401178,"number":1034,"state":"OPEN","title":"Recommended way of exposing WMI enums?","body":"I see that different approaches for exposing WMI enumerations are used in this repo. The toaster project uses an apparently undocumented `WmiEnum` qualifier in [toaster.mof](https://github.com/microsoft/Windows-driver-samples/blob/main/general/toaster/toastDrv/kmdf/func/featured/toaster.mof#L18). Other projects such as the iSCSI [config.mof](https://github.com/microsoft/Windows-driver-samples/blob/main/storage/iscsi/src/config.mof#L190) are using [`ValueMap` and `Value`](https://learn.microsoft.com/en-us/windows/win32/wmisdk/value-map) qualifiers.\n\nWhich of these approaches are recommended? Also, could the repo be updated to _only_ use the recommended approach, so that it's clear to new driver developers?","user":{"login":"forderud"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":3,"created_at":"2023-09-19T07:45:17Z","updated_at":"2025-11-11T04:08:49Z"},{"id":1879207564,"number":1025,"state":"OPEN","title":"Reserved service name errors when building Toaster KMDF samples","body":"I'm experiencing the following errors when attempting to build the [general\\toaster\\toastDrv](https://github.com/microsoft/Windows-driver-samples/tree/main/general/toaster/toastDrv) KMDF projects with Visual Studio 2022:\n```\n>------ Build started: Project: dynambus, Configuration: Debug x64 ------\n>Building 'dynambus' with toolset 'WindowsKernelModeDriver10.0' and the 'Universal' target platform.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\bus\\dynamic\\dynambus.inx(64-64): error 1293: Service name 'dynambus' is reserved.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\bus\\dynamic\\dynambus.inx(75-75): error 1293: Service name 'dynambus' is reserved.\n\n>------ Build started: Project: StatBus, Configuration: Debug x64 ------\n>Building 'StatBus' with toolset 'WindowsKernelModeDriver10.0' and the 'Universal' target platform.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\bus\\static\\statbus.inx(64-64): error 1293: Service name 'statbus' is reserved.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\bus\\static\\statbus.inx(75-75): error 1293: Service name 'statbus' is reserved.\n\n>------ Build started: Project: filter (Kmdf\\Filter\\Generic\\filter), Configuration: Debug x64 ------\n>Building 'filter' with toolset 'WindowsKernelModeDriver10.0' and the 'Universal' target platform.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\filter\\filter.inx(76-76): error 1293: Service name 'ToasterFilter' is reserved.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\filter\\filter.inx(77-77): error 1293: Service name 'wdffeatured' is reserved.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\filter\\filter.inx(96-96): error 1293: Service name 'ToasterFilter' is reserved.\n\n>------ Build started: Project: filter (Kmdf\\Filter\\Sideband\\filter), Configuration: Debug x64 ------\n>Building 'filter' with toolset 'WindowsKernelModeDriver10.0' and the 'Universal' target platform.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\filter\\filter.inx(76-76): error 1293: Service name 'ToasterFilter' is reserved.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\filter\\filter.inx(77-77): error 1293: Service name 'wdffeatured' is reserved.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\filter\\filter.inx(96-96): error 1293: Service name 'ToasterFilter' is reserved.\n\n>------ Build started: Project: wdffeatured, Configuration: Debug x64 ------\n>Building 'wdffeatured' with toolset 'WindowsKernelModeDriver10.0' and the 'Universal' target platform.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\func\\featured\\wdffeatured.inx(72-72): error 1293: Service name 'wdffeatured' is reserved.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\func\\featured\\wdffeatured.inx(82-82): error 1293: Service name 'wdffeatured' is reserved.\n\n>------ Build started: Project: wdfsimple, Configuration: Debug x64 ------\n>Building 'wdfsimple' with toolset 'WindowsKernelModeDriver10.0' and the 'Universal' target platform.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\func\\simple\\wdfsimple.inx(75-75): error 1293: Service name 'wdfsimple' is reserved.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\func\\simple\\wdfsimple.inx(85-85): error 1293: Service name 'wdfsimple' is reserved.\n\n>------ Build started: Project: wdftoastmon, Configuration: Debug x64 ------\n>Building 'wdftoastmon' with toolset 'WindowsKernelModeDriver10.0' and the 'Universal' target platform.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\toastmon\\wdftoastmon.inx(22-22): error 1284: Class "Sample" is reserved for use by Microsoft.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\toastmon\\wdftoastmon.inx(40-40): error 1285: Cannot specify [ClassInstall32] section for Microsoft-defined class.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\toastmon\\wdftoastmon.inx(62-62): error 1293: Service name 'wdfToastMon' is reserved.\n>C:\\Windows-driver-samples\\general\\toaster\\toastDrv\\kmdf\\toastmon\\wdftoastmon.inx(72-72): error 1293: Service name 'wdfToastMon' is reserved.\n```\n\nIt would be great if your could fix these errors so that the samples build out-of-the-box. Alternatively, clearly document how to rename the services. The reason for asking is that it's unclear to me if it's sufficient to change the service name, or if the SYS and INX/INF files also need to be renamed.","user":{"login":"forderud"},"labels":[{"name":"bug","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzI="}],"comments":5,"created_at":"2023-09-03T19:25:28Z","updated_at":"2025-11-11T09:29:09Z"},{"id":1871218923,"number":1023,"state":"OPEN","title":"Modernize filter drivers with AddFilter directive?","body":"I see that there have been a new [INF AddFilter Directive](https://learn.microsoft.com/en-us/windows-hardware/drivers/install/inf-addfilter-directive) available since Windows 1903. Still, none of the sample projects in this repo seem to use it. There's furthermore virtually no other samples available elsewhere online, which makes it challenging to learn how to use it.\n\nWould it be possible for you to modernize one or more of the sample filter-driver projects to use the AddFilter directive?\n\nThanks in advance.","user":{"login":"forderud"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":3,"created_at":"2023-08-29T09:06:38Z","updated_at":"2025-11-11T03:10:14Z"},{"id":1869577732,"number":1022,"state":"OPEN","title":"Interest in modernizing the firefly sample?","body":"I've noticed that the [firefly](https://github.com/microsoft/Windows-driver-samples/tree/main/hid/firefly) sample doesn't work with the current generation of [Pro IntelliMouse](https://www.microsoft.com/en/accessories/products/mice/microsoft-pro-intellimouse). One reason for that is that Pro IntelliMouse reports itself as `VendorID=045E` (Microsoft) and `ProductID=082A` (Pro IntelliMouse) which is _not_ found in the [firefly.inx](https://github.com/microsoft/Windows-driver-samples/blob/main/hid/firefly/driver/firefly.inx) devices section. There also appear to have been changes to the HID reports used to control the LED color.\n\nI've recently published https://github.com/forderud/IntelliMouseDriver as a modernized version of firefly compatible with Pro IntelliMouse and would be happy to contribute all or portions of the project back to this repo if there's interest. If so, then please let me know which portions and/or where to start, and I'll be happy to start preparing pull-requests.\n\nSome improvement areas:\n* Compatibility with Pro IntelliMouse.\n* Allow non-admins read access to the WMI class.\n* Extend [firefly.mof](https://github.com/microsoft/Windows-driver-samples/blob/main/hid/firefly/driver/firefly.mof) to expose the RGB values for the tail-light instead of just a boolean.\n* Filter HID SetFeature reports to selectively block certain tail-light RGB colors.\n* Convert implementation to C++ with RAII instead of goto for for dynamic memory allocation.\n* Switch to `AddFilter` directive for adding the driver to the device stack.\n* Logging to Windows Event Viewer.\n* Convert `IN`/`OUT` annotations to [SAL annotations](https://learn.microsoft.com/en-us/cpp/code-quality/understanding-sal) that can be statically analyzed.","user":{"login":"forderud"},"labels":[{"name":"request","description":"","node_id":"MDU6TGFiZWwyNTA2MjM5MTA="}],"comments":3,"created_at":"2023-08-28T11:32:39Z","updated_at":"2025-11-11T03:03:03Z"},{"id":1799052700,"number":1006,"state":"OPEN","title":"Firefly driver always rebuilt (broken "dirty" check)","body":"The [firefly driver](https://github.com/microsoft/Windows-driver-samples/tree/main/hid/firefly/driver) project "dirty" checking seem to be broken. Building the project always seem to trigger a partial rebuild of INF, CAT & CER files, even if the project is unmodified since the last build.","user":{"login":"forderud"},"labels":[{"name":"bug","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzI="}],"comments":2,"created_at":"2023-07-11T14:20:17Z","updated_at":"2025-11-11T03:05:59Z"},{"id":1758367802,"number":998,"state":"OPEN","title":"UMDF filter driver sample for HID device?","body":"Not sure if this is the right place to ask, but I'm planning to develop a simple filter driver for a HID device. The [firefly](https://github.com/microsoft/windows-driver-samples/tree/main/hid/firefly) sample seems like a good starting point. However, it's KMDF-based, which makes debugging trickier. I'm therefore wondering if there's any UMDF samples available online for a similar driver?","user":{"login":"forderud"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":3,"created_at":"2023-06-15T08:59:06Z","updated_at":"2025-11-11T03:05:10Z"},{"id":1678659679,"number":979,"state":"OPEN","title":"FWPM_LAYER_ALE_CONNECT_REDIRECT_V4: Can't redirect to local proxy","body":"Hi all, I am trying to develop a WFP driver which can be used to redirect outgoing TCP connections to a local proxy server. To better understand the different components involved, I tried running [WFPSampler project](https://github.com/Microsoft/Windows-driver-samples/tree/main/network/trans/WFPSampler) on a new Windows 11 installation:\n\n```\nWFPSampler -clean all\nWFPSampler.exe -s PROXY -l FWPM_LAYER_ALE_CONNECT_REDIRECT_V4 -iprp 443 -ipp TCP -pra 127.0.0.1 -prp 8866 -plspid 13220 –v\n```\n\nAfter running this command, it seems that the WFPSampler service is successfully invoked through RPC:\n\n```\nINFO: ProxyScenarioExecute : RpcInvokeScenarioProxy() [status: 0]\n```\n\nand I can see that the following filter is registered at the ALE_CONNECT_REDIRECT_V4 layer:\n\n\"Screenshot\n\nUnfortunately, no traffic is ever reaching the locally running proxy server. If I make an HTTP connection to a remote server, it simply succeeds as if there are no WFP rules.\n\nI am new to kernel development and not sure how can I further debug this and whether the callout function is ever invoked. I never managed to get TraceView working.\n\nAny pointers would be greatly appreciated.\n","user":{"login":"darind"},"labels":[{"name":"bug","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzI="}],"comments":2,"created_at":"2023-04-21T14:57:48Z","updated_at":"2025-11-11T09:27:22Z"},{"id":1601631499,"number":902,"state":"OPEN","title":"Building XPSDrvSmpl VS Code 2019 Enterprise and Unable to install .INF","body":"Visual Studio Version 16\nVisualStudioVersion = 16.0.33328.57\n\nWindows Driver Kit - Windows 10.0.19041.685\nWindows SDK - 10.0.19041.685\n\nI am able to _build_ the **XPSDrvSmpl** for **x64** but I am unable to install the driver. These are the steps that I take to install the driver: \n* I build the driver for x64 and it creates a package folder and package.cer\n* I install the package.cer certificate file \n* I got Device Manager -> Print queues \n* Select Action -> Add Legacy Hardware\n* Hit Next in the Wizard and select _Install the hardware that I manually select from list (Advanced_\n* Select _Printers_ from _Common hardware types_\n* For _Use an existing port_ choose _FILE (Print to file)_\n* Choose _Have Disk..._ and select the INF file for _Copy manufacturers files from_\n* Select OK \n\nI get the following error: \n![image](https://user-images.githubusercontent.com/17734395/221639734-52fb585c-156c-464b-a48d-7bb0183d2236.png)\n\nDoes anyone how to get around this or the correct steps for deploying and testing a driver on your local machine. Any help is appreciated - thanks! ","user":{"login":"mkhalid578"},"labels":[{"name":"help wanted","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzU="}],"comments":6,"created_at":"2023-02-27T17:35:20Z","updated_at":"2025-11-11T09:36:23Z"},{"id":1516414793,"number":821,"state":"OPEN","title":"[help] fastfat testing","body":"After deleting `C:/Windows/System32/Drivers/fastfat.sys`, KDNET does not work:\n```\nPS C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64> .\\kdnet.exe w11 50030\n\nFailed to enable kernel debugging. Is secure boot enabled?\nAttempting to enable kernel debugging on the {default} OS installation.\nFailed to enable debugging on the {default} OS. Is secure boot enabled?\n```\n\nI am testing on Windows VM (Windows 11) using VMWare Workstation with Secure Boot disabled. After enabling Secure Boot, KDNET asks to disable it.","user":{"login":"ivanstepanovftw"},"labels":[{"name":"bug","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzI="}],"comments":7,"created_at":"2023-01-02T13:46:09Z","updated_at":"2025-11-11T17:59:17Z"},{"id":1354010474,"number":777,"state":"OPEN","title":"usbview reports different USB device power state from device manager","body":"This issue stems from my question https://stackoverflow.com/questions/73490266/retrieve-windows-usb-device-power-status-from-the-command-line \n\nI have tried checking the current USB device power state of a random device on my system, here Realtek USB 2.0 Card Reader.\n\nWindows (10) Device Manager/ [right-click device node/Properties]/ Details/ Property: Power data/ Value: Current power state reports state D0:\n\n![device manager](https://i.stack.imgur.com/UXqKe.png)\n\nIf I use usbview to inspect the same device (where there are no physical changes, such as inserting a card, of the device state), I get D2 for the device power state instead:\n\n![USBview](https://i.stack.imgur.com/vwLEu.png)\n\nIs this expected behavior - and if so, shy does it happen?\n","user":{"login":"sdbbs"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":3,"created_at":"2022-08-29T09:52:45Z","updated_at":"2025-12-17T09:27:00Z"},{"id":1344863206,"number":773,"state":"OPEN","title":"Sample WDDM driver","body":"Writing a WDDM driver is very complex and I am not aware of any open-source examples that could be used as a reference. This is a problem for developers of virtualization toolkits, such as Qubes OS, who want to provide seamless integation of Windows guests into the host desktop environment. A sample driver that just rendered each window in software and then called a callback with the rendered buffer would be very useful for these developers.","user":{"login":"DemiMarie"},"labels":[{"name":"request","description":"","node_id":"MDU6TGFiZWwyNTA2MjM5MTA="}],"comments":8,"created_at":"2022-08-19T20:20:12Z","updated_at":"2025-11-22T02:52:05Z"},{"id":1317604233,"number":762,"state":"OPEN","title":"No JobCopiesAllDocuments feature in the xps file generated by XpsDrvSmpl","body":"I develop a xps driver based on xpsdrvsmpl. When I choose to print multiple copies of a pdf file, only one copy was printed. I unzip the file and open the print ticket file Job_PT.xml and found that there is no JobCopiesAllDocuments feature (about the number of copies) in it. \n\nHowever, I found that the xps file that generated by Microsoft XPS Document Writer contains this feature (See the picture below). \n![图片](https://user-images.githubusercontent.com/40427167/180907796-e86c9160-bbde-4224-b8fa-302cd77c9e8f.png)\n\nDoes anyone know why xpsdrvsmpl didn't generate this feature? How do I modify the code to generate it?\n","user":{"login":"sylin211"},"labels":[{"name":"bug","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzI="}],"comments":4,"created_at":"2022-07-26T02:14:36Z","updated_at":"2025-12-17T08:11:37Z"},{"id":1299365464,"number":753,"state":"OPEN","title":"FastFat can sometimes fail FilePositionInformation unnecessarily for read-only media","body":"FIC FilePositionInformation should be excluded from the IRP_MJ_SET_INFORMATION check here: https://github.com/microsoft/Windows-driver-samples/blob/d0b7e627fc4aebe6b9c3805a63d0aba4557433ab/filesys/fastfat/verfysup.c#L1707\n\nIt should work even for write protected media.\n\nThis can cause application failures e.g. opening pdfs using acrobat reader on read-only disks.","user":{"login":"AshwinTidke"},"labels":[{"name":"bug","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzI="}],"comments":7,"created_at":"2022-07-08T19:19:13Z","updated_at":"2025-11-12T19:09:17Z"},{"id":616834807,"number":498,"state":"OPEN","title":"2004 Updates","body":"[This](https://github.com/microsoft/Windows-driver-samples/commit/96eb96dfb613e4c745db6bd1f53a92fe7e2290fc) is the last update for some drivers, such as [fastfat](https://github.com/microsoft/Windows-driver-samples/tree/master/filesys/fastfat).\n\nWindows 10 2004 is about to come out. I think it's a good time to freshen up the examples based on the latest 2004 codebase.","user":{"login":"EatonZ"},"labels":[{"name":"question","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzc="}],"comments":5,"created_at":"2020-05-12T17:34:36Z","updated_at":"2025-11-11T02:10:35Z"},{"id":432543100,"number":362,"state":"OPEN","title":"Retrieving PrintTicket for shared XPS driver failes (returns PrintTicket of local computer)","body":"When retrieving the PrintTicket from a shared XPS v4 driver, you get the PrintTicket of the local computer and not of the computer who printed to the shared driver.\n\nThe IPrintPipelinePropertyBag contains the incorrect information. \nThe user can be found when parsing the xps datastream itself.\n\nEither this is a bug, or documentation should be improved as it is not clear then what we are doing wrong.\n\n```\n__override STDMETHODIMP StreamFilter::InitializeFilter(\n _In_ IInterFilterCommunicator *pIFilterCommunicator,\n _In_ IPrintPipelinePropertyBag *pIPropertyBag,\n _In_ IPrintPipelineManagerControl *pIPipelineControl\n ){\n…\nm_JobInfo = new JobInformation(pIPropertyBag);\n}\n\n\n\n\nvoid JobInformation::SavePrintTicket(CString outputFolder)\n{\nSafeVariant varUserPrintTicket;\nVariantInit(&varUserPrintTicket);\nTHROW_ON_FAILED_HRESULT(m_pIPropertyBag->GetProperty(XPS_FP_USER_PRINT_TICKET, &varUserPrintTicket));\nIUnknown_t pUnk = varUserPrintTicket.punkVal;\n\nIPrintReadStreamFactory_t pStreamFactory;\nTHROW_ON_FAILED_HRESULT(pUnk.QueryInterface(&pStreamFactory));\n\n//\n// Get the default user Print Ticket stream\n// and wrap it in an IStream\n//\nIPrintReadStream_t pUserPrintTicketStream;\nTHROW_ON_FAILED_HRESULT(pStreamFactory->GetStream(&pUserPrintTicketStream));\n\nDumpPrintTicket(pUserPrintTicketStream, outputFolder);\n}\n```","user":{"login":"wstaelens"},"labels":[{"name":"bug","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzI="}],"comments":4,"created_at":"2019-04-12T12:32:12Z","updated_at":"2025-11-12T08:28:22Z"},{"id":398056175,"number":333,"state":"OPEN","title":"Using SetupDiEnumDeviceInterfaces instead of symbolic links","body":"Am I right in thinking that usb/usbview/enum.c now uses 5 different SetupAPI calls to get a device path instead of simply trying several symbolic links to enumerate the interface? if so, I suggest we edit the Readme, as it is confusing: both methods return host controllers and what is in the Readme is not what is in the code.\n\nWhich method do you prefer?\n","user":{"login":"tonysepia"},"labels":[{"name":"request","description":"","node_id":"MDU6TGFiZWwyNTA2MjM5MTA="}],"comments":4,"created_at":"2019-01-10T23:08:46Z","updated_at":"2025-12-03T00:18:42Z"},{"id":317478271,"number":239,"state":"OPEN","title":"WDI Driver Usage for reference","body":"Hi Team,\nWe are trying to migrate from native WiFi drivers to WDI, and started looking into WDI driver design. There are many things to consider during design phase.\nWe also gone through the sample driver from https://github.com/Microsoft/Windows-driver-samples/tree/master/network/wlan\nand my understanding is above sample driver is built for RTL8723BS chip from Realtek.\n\nSo two questions here on further approach.\n1. RTL8723BS can be procured as pluggable NIC for reference ?\n If Yes, please provided references.\n If not, let us know how can we test the sample driver provided in github\n2. Is sample driver can be used for migration, by removing Relatek specific code and replace with our WiFi chip code by modifying HAL layer of this sample ? \n## **#Windows-driver-samples/network/wlan/wdi**","user":{"login":"mrchsreddy"},"labels":[{"name":"help wanted","description":"","node_id":"MDU6TGFiZWwxODQxMjEzMzU="}],"comments":4,"created_at":"2018-04-25T04:55:02Z","updated_at":"2025-12-17T09:17:10Z"},{"id":245897026,"number":154,"state":"OPEN","title":"Virtual HID Framework (VHF): need xample","body":"We need some example.","user":{"login":"TronicLabs"},"labels":[{"name":"request","description":"","node_id":"MDU6TGFiZWwyNTA2MjM5MTA="}],"comments":8,"created_at":"2017-07-27T01:03:03Z","updated_at":"2025-11-11T04:36:50Z"},{"id":224840481,"number":135,"state":"OPEN","title":"More keyboard driver samples","body":"It would be useful if the keyboard driver samples would show more of the available features - ligatures, multiple layout, sgcaps, etc.","user":{"login":"miloush"},"labels":[{"name":"request","description":"","node_id":"MDU6TGFiZWwyNTA2MjM5MTA="}],"comments":3,"created_at":"2017-04-27T16:24:21Z","updated_at":"2025-11-11T01:16:59Z"}],"pageInfo":{"endCursor":"Y3Vyc29yOnYyOpK5MjAxNy0wNC0yN1QwOToyNDoyMS0wNzowMM4NZssh","hasNextPage":false,"hasPreviousPage":false,"startCursor":"Y3Vyc29yOnYyOpK5MjAyNS0xMi0zMVQwMjo0MDoxMi0wODowMM7g3BMr"},"totalCount":38} \ No newline at end of file diff --git a/repo-tools/ai/_data/prs.json b/repo-tools/ai/_data/prs.json new file mode 100644 index 00000000..c890e38c --- /dev/null +++ b/repo-tools/ai/_data/prs.json @@ -0,0 +1 @@ +[{"id":3243852211,"number":1345,"state":"open","locked":false,"title":"Remove references to non-existent WFPSamplerProxyService.exe","body":"The sample code referred to WFPSamplerProxyService.exe, which does not exist in the WFPSampler sample. These outdated references could confuse readers, so they have been removed.","created_at":"2026-02-04T02:49:23Z","updated_at":"2026-02-04T02:49:24Z","user":{"login":"riwaida","id":42270443,"node_id":"MDQ6VXNlcjQyMjcwNDQz","avatar_url":"https://avatars.githubusercontent.com/u/42270443?v=4","html_url":"https://github.com/riwaida","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/riwaida","events_url":"https://api.github.com/users/riwaida/events{/privacy}","following_url":"https://api.github.com/users/riwaida/following{/other_user}","followers_url":"https://api.github.com/users/riwaida/followers","gists_url":"https://api.github.com/users/riwaida/gists{/gist_id}","organizations_url":"https://api.github.com/users/riwaida/orgs","received_events_url":"https://api.github.com/users/riwaida/received_events","repos_url":"https://api.github.com/users/riwaida/repos","starred_url":"https://api.github.com/users/riwaida/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/riwaida/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1345","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1345","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1345","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/71b64d671cf5850b805033023d6ac250e1847878","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1345.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1345.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1345/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1345/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1345/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes7BWUGz","merge_commit_sha":"6df72dc46a0f1d8832e06df865172cf2b2a56401","requested_teams":[{"id":8962301,"node_id":"T_kwDOAF3p4s4AiMD9","name":"NetSec","description":"Network Security","url":"https://api.github.com/organizations/6154722/team/8962301","slug":"netsec","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/netsec","members_url":"https://api.github.com/organizations/6154722/team/8962301/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8962301/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1345"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1345"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1345"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1345/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1345/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1345/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/71b64d671cf5850b805033023d6ac250e1847878"}},"head":{"label":"riwaida:main","ref":"main","sha":"71b64d671cf5850b805033023d6ac250e1847878","repo":{"id":838669119,"node_id":"R_kgDOMf0TPw","owner":{"login":"riwaida","id":42270443,"node_id":"MDQ6VXNlcjQyMjcwNDQz","avatar_url":"https://avatars.githubusercontent.com/u/42270443?v=4","html_url":"https://github.com/riwaida","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/riwaida","events_url":"https://api.github.com/users/riwaida/events{/privacy}","following_url":"https://api.github.com/users/riwaida/following{/other_user}","followers_url":"https://api.github.com/users/riwaida/followers","gists_url":"https://api.github.com/users/riwaida/gists{/gist_id}","organizations_url":"https://api.github.com/users/riwaida/orgs","received_events_url":"https://api.github.com/users/riwaida/received_events","repos_url":"https://api.github.com/users/riwaida/repos","starred_url":"https://api.github.com/users/riwaida/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/riwaida/subscriptions"},"name":"Windows-driver-samples","full_name":"riwaida/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2024-08-06T05:47:24Z","pushed_at":"2026-02-04T02:48:17Z","updated_at":"2026-02-04T02:48:20Z","html_url":"https://github.com/riwaida/Windows-driver-samples","clone_url":"https://github.com/riwaida/Windows-driver-samples.git","git_url":"git://github.com/riwaida/Windows-driver-samples.git","ssh_url":"git@github.com:riwaida/Windows-driver-samples.git","svn_url":"https://github.com/riwaida/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165838,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/riwaida/Windows-driver-samples","archive_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"riwaida","id":42270443,"node_id":"MDQ6VXNlcjQyMjcwNDQz","avatar_url":"https://avatars.githubusercontent.com/u/42270443?v=4","html_url":"https://github.com/riwaida","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/riwaida","events_url":"https://api.github.com/users/riwaida/events{/privacy}","following_url":"https://api.github.com/users/riwaida/following{/other_user}","followers_url":"https://api.github.com/users/riwaida/followers","gists_url":"https://api.github.com/users/riwaida/gists{/gist_id}","organizations_url":"https://api.github.com/users/riwaida/orgs","received_events_url":"https://api.github.com/users/riwaida/received_events","repos_url":"https://api.github.com/users/riwaida/repos","starred_url":"https://api.github.com/users/riwaida/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/riwaida/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"1d89a1513f519f62226f84a3131916ab2fd0c3ef","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":3157765993,"number":1343,"state":"open","locked":false,"title":"Correct the buggy KMOD sample","body":"fixes #1270 - this corrects a bug introduced a couple years ago when automation required us to remove ExAllocatePoolWithTag usages. The previous change updated the ExAllocatePoolWithTag uses to ExAllocatePool2 calls, but failed to update the POOL_FLAGS/POOL_TYPE arguments causing errors.","created_at":"2026-01-08T22:49:59Z","updated_at":"2026-01-08T22:51:49Z","user":{"login":"Spruill-1","id":62445444,"node_id":"MDQ6VXNlcjYyNDQ1NDQ0","avatar_url":"https://avatars.githubusercontent.com/u/62445444?v=4","html_url":"https://github.com/Spruill-1","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/Spruill-1","events_url":"https://api.github.com/users/Spruill-1/events{/privacy}","following_url":"https://api.github.com/users/Spruill-1/following{/other_user}","followers_url":"https://api.github.com/users/Spruill-1/followers","gists_url":"https://api.github.com/users/Spruill-1/gists{/gist_id}","organizations_url":"https://api.github.com/users/Spruill-1/orgs","received_events_url":"https://api.github.com/users/Spruill-1/received_events","repos_url":"https://api.github.com/users/Spruill-1/repos","starred_url":"https://api.github.com/users/Spruill-1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Spruill-1/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1343","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1343","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1343","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/c5fc3ca1fd0e00a7e085ef48abfeff9c0c39817e","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1343.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1343.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1343/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1343/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1343/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes68N69p","merge_commit_sha":"dbca9c3d92ff8caac204337193be2e9b99bd42f5","requested_teams":[{"id":3810687,"node_id":"MDQ6VGVhbTM4MTA2ODc=","name":"Display Kernel Devs","description":"Display kernel","url":"https://api.github.com/organizations/6154722/team/3810687","slug":"display-kernel-devs","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/display-kernel-devs","members_url":"https://api.github.com/organizations/6154722/team/3810687/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/3810687/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1343"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1343"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1343"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1343/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1343/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1343/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/c5fc3ca1fd0e00a7e085ef48abfeff9c0c39817e"}},"head":{"label":"Spruill-1:user/daspr/kmodsamplefix","ref":"user/daspr/kmodsamplefix","sha":"c5fc3ca1fd0e00a7e085ef48abfeff9c0c39817e","repo":{"id":747922261,"node_id":"R_kgDOLJRjVQ","owner":{"login":"Spruill-1","id":62445444,"node_id":"MDQ6VXNlcjYyNDQ1NDQ0","avatar_url":"https://avatars.githubusercontent.com/u/62445444?v=4","html_url":"https://github.com/Spruill-1","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/Spruill-1","events_url":"https://api.github.com/users/Spruill-1/events{/privacy}","following_url":"https://api.github.com/users/Spruill-1/following{/other_user}","followers_url":"https://api.github.com/users/Spruill-1/followers","gists_url":"https://api.github.com/users/Spruill-1/gists{/gist_id}","organizations_url":"https://api.github.com/users/Spruill-1/orgs","received_events_url":"https://api.github.com/users/Spruill-1/received_events","repos_url":"https://api.github.com/users/Spruill-1/repos","starred_url":"https://api.github.com/users/Spruill-1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Spruill-1/subscriptions"},"name":"Windows-driver-samples","full_name":"Spruill-1/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2024-01-24T22:44:33Z","pushed_at":"2026-01-08T22:51:47Z","updated_at":"2024-01-24T22:44:33Z","html_url":"https://github.com/Spruill-1/Windows-driver-samples","clone_url":"https://github.com/Spruill-1/Windows-driver-samples.git","git_url":"git://github.com/Spruill-1/Windows-driver-samples.git","ssh_url":"git@github.com:Spruill-1/Windows-driver-samples.git","svn_url":"https://github.com/Spruill-1/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165726,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples","archive_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/Spruill-1/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"Spruill-1","id":62445444,"node_id":"MDQ6VXNlcjYyNDQ1NDQ0","avatar_url":"https://avatars.githubusercontent.com/u/62445444?v=4","html_url":"https://github.com/Spruill-1","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/Spruill-1","events_url":"https://api.github.com/users/Spruill-1/events{/privacy}","following_url":"https://api.github.com/users/Spruill-1/following{/other_user}","followers_url":"https://api.github.com/users/Spruill-1/followers","gists_url":"https://api.github.com/users/Spruill-1/gists{/gist_id}","organizations_url":"https://api.github.com/users/Spruill-1/orgs","received_events_url":"https://api.github.com/users/Spruill-1/received_events","repos_url":"https://api.github.com/users/Spruill-1/repos","starred_url":"https://api.github.com/users/Spruill-1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Spruill-1/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"ed3dbe56378117a15105099870f2397671ad99ab","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":3040934827,"number":1339,"state":"open","locked":false,"title":"SDCA sample driver.","body":"SDCA Sample Driver.","created_at":"2025-11-24T17:55:28Z","updated_at":"2025-11-24T17:55:41Z","user":{"login":"saurinshah9","id":38705196,"node_id":"MDQ6VXNlcjM4NzA1MTk2","avatar_url":"https://avatars.githubusercontent.com/u/38705196?v=4","html_url":"https://github.com/saurinshah9","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/saurinshah9","events_url":"https://api.github.com/users/saurinshah9/events{/privacy}","following_url":"https://api.github.com/users/saurinshah9/following{/other_user}","followers_url":"https://api.github.com/users/saurinshah9/followers","gists_url":"https://api.github.com/users/saurinshah9/gists{/gist_id}","organizations_url":"https://api.github.com/users/saurinshah9/orgs","received_events_url":"https://api.github.com/users/saurinshah9/received_events","repos_url":"https://api.github.com/users/saurinshah9/repos","starred_url":"https://api.github.com/users/saurinshah9/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/saurinshah9/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1339","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1339","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1339","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/4f9caecb9454f3856e76f4960979be19602590ca","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1339.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1339.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1339/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1339/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1339/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes61QPur","merge_commit_sha":"017e95635035dcb80c0f4c0988edbd5c7a19b7a7","requested_teams":[{"id":8622681,"node_id":"T_kwDOAF3p4s4Ag5JZ","name":"WindowsAudio","description":"Windows audio teams","url":"https://api.github.com/organizations/6154722/team/8622681","slug":"windowsaudio","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/windowsaudio","members_url":"https://api.github.com/organizations/6154722/team/8622681/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8622681/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1339"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1339"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1339"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1339/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1339/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1339/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/4f9caecb9454f3856e76f4960979be19602590ca"}},"head":{"label":"saurinshah9:master","ref":"master","sha":"4f9caecb9454f3856e76f4960979be19602590ca","repo":{"id":130913587,"node_id":"MDEwOlJlcG9zaXRvcnkxMzA5MTM1ODc=","owner":{"login":"saurinshah9","id":38705196,"node_id":"MDQ6VXNlcjM4NzA1MTk2","avatar_url":"https://avatars.githubusercontent.com/u/38705196?v=4","html_url":"https://github.com/saurinshah9","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/saurinshah9","events_url":"https://api.github.com/users/saurinshah9/events{/privacy}","following_url":"https://api.github.com/users/saurinshah9/following{/other_user}","followers_url":"https://api.github.com/users/saurinshah9/followers","gists_url":"https://api.github.com/users/saurinshah9/gists{/gist_id}","organizations_url":"https://api.github.com/users/saurinshah9/orgs","received_events_url":"https://api.github.com/users/saurinshah9/received_events","repos_url":"https://api.github.com/users/saurinshah9/repos","starred_url":"https://api.github.com/users/saurinshah9/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/saurinshah9/subscriptions"},"name":"Windows-driver-samples","full_name":"saurinshah9/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2018-04-24T21:04:36Z","pushed_at":"2025-11-24T17:54:18Z","updated_at":"2025-11-24T17:54:25Z","html_url":"https://github.com/saurinshah9/Windows-driver-samples","clone_url":"https://github.com/saurinshah9/Windows-driver-samples.git","git_url":"git://github.com/saurinshah9/Windows-driver-samples.git","ssh_url":"git@github.com:saurinshah9/Windows-driver-samples.git","svn_url":"https://github.com/saurinshah9/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":166073,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples","archive_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/saurinshah9/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"saurinshah9","id":38705196,"node_id":"MDQ6VXNlcjM4NzA1MTk2","avatar_url":"https://avatars.githubusercontent.com/u/38705196?v=4","html_url":"https://github.com/saurinshah9","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/saurinshah9","events_url":"https://api.github.com/users/saurinshah9/events{/privacy}","following_url":"https://api.github.com/users/saurinshah9/following{/other_user}","followers_url":"https://api.github.com/users/saurinshah9/followers","gists_url":"https://api.github.com/users/saurinshah9/gists{/gist_id}","organizations_url":"https://api.github.com/users/saurinshah9/orgs","received_events_url":"https://api.github.com/users/saurinshah9/received_events","repos_url":"https://api.github.com/users/saurinshah9/repos","starred_url":"https://api.github.com/users/saurinshah9/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/saurinshah9/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"1d89a1513f519f62226f84a3131916ab2fd0c3ef","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":3026421561,"number":1337,"state":"open","locked":false,"title":"WDKBatchBuild","created_at":"2025-11-19T15:53:28Z","updated_at":"2025-11-19T15:53:28Z","user":{"login":"JakobL-MSFT","id":110699333,"node_id":"U_kgDOBpkjRQ","avatar_url":"https://avatars.githubusercontent.com/u/110699333?v=4","html_url":"https://github.com/JakobL-MSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JakobL-MSFT","events_url":"https://api.github.com/users/JakobL-MSFT/events{/privacy}","following_url":"https://api.github.com/users/JakobL-MSFT/following{/other_user}","followers_url":"https://api.github.com/users/JakobL-MSFT/followers","gists_url":"https://api.github.com/users/JakobL-MSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/JakobL-MSFT/orgs","received_events_url":"https://api.github.com/users/JakobL-MSFT/received_events","repos_url":"https://api.github.com/users/JakobL-MSFT/repos","starred_url":"https://api.github.com/users/JakobL-MSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JakobL-MSFT/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1337","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1337","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1337","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/65325d6f8a03f186bc224c1c86e2339d7c64e472","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1337.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1337.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1337/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1337/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1337/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes60Y4c5","merge_commit_sha":"cc832beb4e5386318956e5e4eec27487a0ba418f","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1337"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1337"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1337"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1337/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1337/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1337/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/65325d6f8a03f186bc224c1c86e2339d7c64e472"}},"head":{"label":"microsoft:user/jakobl/WDKBatchBuild","ref":"user/jakobl/WDKBatchBuild","sha":"65325d6f8a03f186bc224c1c86e2339d7c64e472","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"1d89a1513f519f62226f84a3131916ab2fd0c3ef","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2995273960,"number":1335,"state":"open","locked":false,"title":"Add SPDX license identifiers to source files","body":"SPDX (https://spdx.org/licenses/) is a commonly used system for annotating source files with the intended license. In WDK, the top level LICENSE file describes the license as MS-PL, but individual files are less clear about the exact license. This has caused confusion in the past\n(https://github.com/microsoft/Windows-driver-samples/issues/60). By annotating files with SPDX the license can be clarified by the addition of a single line.\n\nThis change was done largely using the script below, followed by some light hand editing:\n```\nperl -i -e 'while (<>) { if ($. <= 5 && m/(.*)Copyright.*Microsoft/) { print; print "$1SPDX-License-Identifier: MS-PL\\r\\n"; } else { print } } continue { close ARGV if eof }' -- $( git ls-files )\n```","created_at":"2025-11-10T13:17:27Z","updated_at":"2025-11-10T17:42:43Z","user":{"login":"rwmjones","id":259688,"node_id":"MDQ6VXNlcjI1OTY4OA==","avatar_url":"https://avatars.githubusercontent.com/u/259688?v=4","html_url":"https://github.com/rwmjones","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/rwmjones","events_url":"https://api.github.com/users/rwmjones/events{/privacy}","following_url":"https://api.github.com/users/rwmjones/following{/other_user}","followers_url":"https://api.github.com/users/rwmjones/followers","gists_url":"https://api.github.com/users/rwmjones/gists{/gist_id}","organizations_url":"https://api.github.com/users/rwmjones/orgs","received_events_url":"https://api.github.com/users/rwmjones/received_events","repos_url":"https://api.github.com/users/rwmjones/repos","starred_url":"https://api.github.com/users/rwmjones/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rwmjones/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1335","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1335","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1335","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/38ec2b37a464a00d75ce875fea576f718e56d914","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1335.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1335.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1335/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1335/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1335/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes6yiEDo","merge_commit_sha":"204e874c9bdc4a6d0a73d3239275c536e4d430c0","requested_teams":[{"id":9104631,"node_id":"T_kwDOAF3p4s4Aiuz3","name":"Wi-Fi Core","description":"Wi-Fi Core","url":"https://api.github.com/organizations/6154722/team/9104631","slug":"wi-fi-core","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/wi-fi-core","members_url":"https://api.github.com/organizations/6154722/team/9104631/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9104631/repos"},{"id":9104021,"node_id":"T_kwDOAF3p4s4AiuqV","name":"CoreOS Buses and WDF","description":"CoreOS Buses and WDF","url":"https://api.github.com/organizations/6154722/team/9104021","slug":"coreos-buses-and-wdf","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/coreos-buses-and-wdf","members_url":"https://api.github.com/organizations/6154722/team/9104021/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9104021/repos"},{"id":8638855,"node_id":"T_kwDOAF3p4s4Ag9GH","name":"Sensors Platform","description":"Sensors Platform Team","url":"https://api.github.com/organizations/6154722/team/8638855","slug":"sensors-platform","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/sensors-platform","members_url":"https://api.github.com/organizations/6154722/team/8638855/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8638855/repos"},{"id":9847029,"node_id":"T_kwDOAF3p4s4AlkD1","name":"Core Print","description":"Connectivity Platform Print team","url":"https://api.github.com/organizations/6154722/team/9847029","slug":"core-print","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/core-print","members_url":"https://api.github.com/organizations/6154722/team/9847029/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9847029/repos"},{"id":9974817,"node_id":"T_kwDOAF3p4s4AmDQh","name":"PnP","description":"Plug and Play device and driver platform development team","url":"https://api.github.com/organizations/6154722/team/9974817","slug":"pnp","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/pnp","members_url":"https://api.github.com/organizations/6154722/team/9974817/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9974817/repos"},{"id":8754645,"node_id":"T_kwDOAF3p4s4AhZXV","name":"Platform Integrity","description":"Platform Integrity Team","url":"https://api.github.com/organizations/6154722/team/8754645","slug":"platform-integrity","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/platform-integrity","members_url":"https://api.github.com/organizations/6154722/team/8754645/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8754645/repos"},{"id":8962301,"node_id":"T_kwDOAF3p4s4AiMD9","name":"NetSec","description":"Network Security","url":"https://api.github.com/organizations/6154722/team/8962301","slug":"netsec","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/netsec","members_url":"https://api.github.com/organizations/6154722/team/8962301/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8962301/repos"},{"id":2047146,"node_id":"MDQ6VGVhbTIwNDcxNDY=","name":"Network Driver Platform","description":"","url":"https://api.github.com/organizations/6154722/team/2047146","slug":"network-driver-platform","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/network-driver-platform","members_url":"https://api.github.com/organizations/6154722/team/2047146/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/2047146/repos"},{"id":8979037,"node_id":"T_kwDOAF3p4s4AiQJd","name":"Kernel Core","description":"Kernel Core","url":"https://api.github.com/organizations/6154722/team/8979037","slug":"kernel-core","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/kernel-core","members_url":"https://api.github.com/organizations/6154722/team/8979037/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8979037/repos"},{"id":8646760,"node_id":"T_kwDOAF3p4s4Ag_Bo","name":"Filter Manager","description":"Filter Manager Team","url":"https://api.github.com/organizations/6154722/team/8646760","slug":"filter-manager","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/filter-manager","members_url":"https://api.github.com/organizations/6154722/team/8646760/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8646760/repos"},{"id":9426426,"node_id":"T_kwDOAF3p4s4Aj9X6","name":"filesystems","description":"Team for the Windows filesystem samples on GIT","url":"https://api.github.com/organizations/6154722/team/9426426","slug":"filesystems","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/filesystems","members_url":"https://api.github.com/organizations/6154722/team/9426426/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9426426/repos"},{"id":7675802,"node_id":"T_kwDOAF3p4s4AdR-a","name":"ETW","description":"Event Tracing for Windows team","url":"https://api.github.com/organizations/6154722/team/7675802","slug":"etw","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/etw","members_url":"https://api.github.com/organizations/6154722/team/7675802/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/7675802/repos"},{"id":9433825,"node_id":"T_kwDOAF3p4s4Aj_Lh","name":"EE Devs","description":"Energy Efficiency Developers","url":"https://api.github.com/organizations/6154722/team/9433825","slug":"ee-devs","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/ee-devs","members_url":"https://api.github.com/organizations/6154722/team/9433825/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9433825/repos"},{"id":3810687,"node_id":"MDQ6VGVhbTM4MTA2ODc=","name":"Display Kernel Devs","description":"Display kernel","url":"https://api.github.com/organizations/6154722/team/3810687","slug":"display-kernel-devs","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/display-kernel-devs","members_url":"https://api.github.com/organizations/6154722/team/3810687/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/3810687/repos"},{"id":9398934,"node_id":"T_kwDOAF3p4s4Aj2qW","name":"Device Enumeration and Interconnect","description":"Device enumeration and related technologies","url":"https://api.github.com/organizations/6154722/team/9398934","slug":"device-enumeration-and-interconnect","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/device-enumeration-and-interconnect","members_url":"https://api.github.com/organizations/6154722/team/9398934/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9398934/repos"},{"id":9016786,"node_id":"T_kwDOAF3p4s4AiZXS","name":"Consumer Storage","description":"Consumer Storage","url":"https://api.github.com/organizations/6154722/team/9016786","slug":"consumer-storage","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/consumer-storage","members_url":"https://api.github.com/organizations/6154722/team/9016786/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9016786/repos"},{"id":3420059,"node_id":"MDQ6VGVhbTM0MjAwNTk=","name":"CoreNetworking","description":"","url":"https://api.github.com/organizations/6154722/team/3420059","slug":"corenetworking","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/corenetworking","members_url":"https://api.github.com/organizations/6154722/team/3420059/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/3420059/repos"},{"id":7106844,"node_id":"T_kwDOAF3p4s4AbHEc","name":"Connection Awareness","description":"Connection Awareness Team","url":"https://api.github.com/organizations/6154722/team/7106844","slug":"connection-awareness","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/connection-awareness","members_url":"https://api.github.com/organizations/6154722/team/7106844/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/7106844/repos"},{"id":8754378,"node_id":"T_kwDOAF3p4s4AhZTK","name":"CellCore","description":"Cellular Core Team","url":"https://api.github.com/organizations/6154722/team/8754378","slug":"cellcore","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/cellcore","members_url":"https://api.github.com/organizations/6154722/team/8754378/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8754378/repos"},{"id":8819833,"node_id":"T_kwDOAF3p4s4AhpR5","name":"CameraPlatDev","description":"Windows OS Camera Platform Team GitHub","url":"https://api.github.com/organizations/6154722/team/8819833","slug":"cameraplatdev","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/cameraplatdev","members_url":"https://api.github.com/organizations/6154722/team/8819833/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8819833/repos"},{"id":2435292,"node_id":"MDQ6VGVhbTI0MzUyOTI=","name":"Bluetooth","description":"Bluetooth ","url":"https://api.github.com/organizations/6154722/team/2435292","slug":"bluetooth","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/bluetooth","members_url":"https://api.github.com/organizations/6154722/team/2435292/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/2435292/repos"},{"id":8622681,"node_id":"T_kwDOAF3p4s4Ag5JZ","name":"WindowsAudio","description":"Windows audio teams","url":"https://api.github.com/organizations/6154722/team/8622681","slug":"windowsaudio","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/windowsaudio","members_url":"https://api.github.com/organizations/6154722/team/8622681/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8622681/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1335"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1335"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1335"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1335/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1335/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1335/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/38ec2b37a464a00d75ce875fea576f718e56d914"}},"head":{"label":"rwmjones:add-spdx","ref":"add-spdx","sha":"38ec2b37a464a00d75ce875fea576f718e56d914","repo":{"id":1093505282,"node_id":"R_kgDOQS2RAg","owner":{"login":"rwmjones","id":259688,"node_id":"MDQ6VXNlcjI1OTY4OA==","avatar_url":"https://avatars.githubusercontent.com/u/259688?v=4","html_url":"https://github.com/rwmjones","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/rwmjones","events_url":"https://api.github.com/users/rwmjones/events{/privacy}","following_url":"https://api.github.com/users/rwmjones/following{/other_user}","followers_url":"https://api.github.com/users/rwmjones/followers","gists_url":"https://api.github.com/users/rwmjones/gists{/gist_id}","organizations_url":"https://api.github.com/users/rwmjones/orgs","received_events_url":"https://api.github.com/users/rwmjones/received_events","repos_url":"https://api.github.com/users/rwmjones/repos","starred_url":"https://api.github.com/users/rwmjones/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rwmjones/subscriptions"},"name":"Windows-driver-samples","full_name":"rwmjones/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2025-11-10T13:16:35Z","pushed_at":"2025-11-10T13:17:08Z","updated_at":"2025-11-10T13:16:36Z","html_url":"https://github.com/rwmjones/Windows-driver-samples","clone_url":"https://github.com/rwmjones/Windows-driver-samples.git","git_url":"git://github.com/rwmjones/Windows-driver-samples.git","ssh_url":"git@github.com:rwmjones/Windows-driver-samples.git","svn_url":"https://github.com/rwmjones/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":166140,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/rwmjones/Windows-driver-samples","archive_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/rwmjones/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"rwmjones","id":259688,"node_id":"MDQ6VXNlcjI1OTY4OA==","avatar_url":"https://avatars.githubusercontent.com/u/259688?v=4","html_url":"https://github.com/rwmjones","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/rwmjones","events_url":"https://api.github.com/users/rwmjones/events{/privacy}","following_url":"https://api.github.com/users/rwmjones/following{/other_user}","followers_url":"https://api.github.com/users/rwmjones/followers","gists_url":"https://api.github.com/users/rwmjones/gists{/gist_id}","organizations_url":"https://api.github.com/users/rwmjones/orgs","received_events_url":"https://api.github.com/users/rwmjones/received_events","repos_url":"https://api.github.com/users/rwmjones/repos","starred_url":"https://api.github.com/users/rwmjones/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rwmjones/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"7615e296273d8ac434f6ead7bd33ac2ca089429c","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2862060677,"number":1329,"state":"open","locked":false,"title":"Test commit","created_at":"2025-09-25T22:11:09Z","updated_at":"2025-09-25T22:11:09Z","user":{"login":"5an7y-Microsoft","id":219205893,"node_id":"U_kgDODRDRBQ","avatar_url":"https://avatars.githubusercontent.com/u/219205893?v=4","html_url":"https://github.com/5an7y-Microsoft","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/5an7y-Microsoft","events_url":"https://api.github.com/users/5an7y-Microsoft/events{/privacy}","following_url":"https://api.github.com/users/5an7y-Microsoft/following{/other_user}","followers_url":"https://api.github.com/users/5an7y-Microsoft/followers","gists_url":"https://api.github.com/users/5an7y-Microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/5an7y-Microsoft/orgs","received_events_url":"https://api.github.com/users/5an7y-Microsoft/received_events","repos_url":"https://api.github.com/users/5an7y-Microsoft/repos","starred_url":"https://api.github.com/users/5an7y-Microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/5an7y-Microsoft/subscriptions"},"draft":true,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1329","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1329","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1329","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/df43d144d52bf5424f49484dc11ecc4152806218","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1329.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1329.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1329/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1329/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1329/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes6ql5SF","merge_commit_sha":"282e791335f3898fb905b4210bd1a6fcd579e78d","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1329"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1329"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1329"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1329/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1329/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1329/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/df43d144d52bf5424f49484dc11ecc4152806218"}},"head":{"label":"microsoft:user/5an7y/test_codeql_except","ref":"user/5an7y/test_codeql_except","sha":"df43d144d52bf5424f49484dc11ecc4152806218","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"9ca0b0d395a55740b261c834df79eb9344e5bc56","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2855586776,"number":1325,"state":"open","locked":false,"title":"Handling KSPROPERTY_CAMERACONTROL_EXTENDED_PROFILE on avscamera DMFT","body":"In avscamera DMFT, its KsEvent and KsProperty functions handle KSPROPERTY_CAMERACONTROL_EXTENDED_PROFILE property to allow DMFT to behave appropriately in response of various camera streaming profile selected. \n","created_at":"2025-09-24T06:18:52Z","updated_at":"2025-10-17T17:41:33Z","user":{"login":"welljeng","id":23374999,"node_id":"MDQ6VXNlcjIzMzc0OTk5","avatar_url":"https://avatars.githubusercontent.com/u/23374999?v=4","html_url":"https://github.com/welljeng","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/welljeng","events_url":"https://api.github.com/users/welljeng/events{/privacy}","following_url":"https://api.github.com/users/welljeng/following{/other_user}","followers_url":"https://api.github.com/users/welljeng/followers","gists_url":"https://api.github.com/users/welljeng/gists{/gist_id}","organizations_url":"https://api.github.com/users/welljeng/orgs","received_events_url":"https://api.github.com/users/welljeng/received_events","repos_url":"https://api.github.com/users/welljeng/repos","starred_url":"https://api.github.com/users/welljeng/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/welljeng/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1325","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1325","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1325","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/0f0734bfaf3e37c1a88585eeca270a6c82d784dc","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1325.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1325.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1325/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1325/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1325/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes6qNMvY","requested_reviewers":[{"login":"jiteshkris","id":17018559,"node_id":"MDQ6VXNlcjE3MDE4NTU5","avatar_url":"https://avatars.githubusercontent.com/u/17018559?v=4","html_url":"https://github.com/jiteshkris","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jiteshkris","events_url":"https://api.github.com/users/jiteshkris/events{/privacy}","following_url":"https://api.github.com/users/jiteshkris/following{/other_user}","followers_url":"https://api.github.com/users/jiteshkris/followers","gists_url":"https://api.github.com/users/jiteshkris/gists{/gist_id}","organizations_url":"https://api.github.com/users/jiteshkris/orgs","received_events_url":"https://api.github.com/users/jiteshkris/received_events","repos_url":"https://api.github.com/users/jiteshkris/repos","starred_url":"https://api.github.com/users/jiteshkris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jiteshkris/subscriptions"},{"login":"LPBourret","id":8705053,"node_id":"MDQ6VXNlcjg3MDUwNTM=","avatar_url":"https://avatars.githubusercontent.com/u/8705053?v=4","html_url":"https://github.com/LPBourret","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/LPBourret","events_url":"https://api.github.com/users/LPBourret/events{/privacy}","following_url":"https://api.github.com/users/LPBourret/following{/other_user}","followers_url":"https://api.github.com/users/LPBourret/followers","gists_url":"https://api.github.com/users/LPBourret/gists{/gist_id}","organizations_url":"https://api.github.com/users/LPBourret/orgs","received_events_url":"https://api.github.com/users/LPBourret/received_events","repos_url":"https://api.github.com/users/LPBourret/repos","starred_url":"https://api.github.com/users/LPBourret/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LPBourret/subscriptions"}],"merge_commit_sha":"383814b65c7aec76218621d2e93f0a4092d3658f","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1325"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1325"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1325"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1325/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1325/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1325/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/0f0734bfaf3e37c1a88585eeca270a6c82d784dc"}},"head":{"label":"welljeng:user/chengfrank/DMFTFaceAuth","ref":"user/chengfrank/DMFTFaceAuth","sha":"0f0734bfaf3e37c1a88585eeca270a6c82d784dc","repo":{"id":1057671880,"node_id":"R_kgDOPwrKyA","owner":{"login":"welljeng","id":23374999,"node_id":"MDQ6VXNlcjIzMzc0OTk5","avatar_url":"https://avatars.githubusercontent.com/u/23374999?v=4","html_url":"https://github.com/welljeng","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/welljeng","events_url":"https://api.github.com/users/welljeng/events{/privacy}","following_url":"https://api.github.com/users/welljeng/following{/other_user}","followers_url":"https://api.github.com/users/welljeng/followers","gists_url":"https://api.github.com/users/welljeng/gists{/gist_id}","organizations_url":"https://api.github.com/users/welljeng/orgs","received_events_url":"https://api.github.com/users/welljeng/received_events","repos_url":"https://api.github.com/users/welljeng/repos","starred_url":"https://api.github.com/users/welljeng/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/welljeng/subscriptions"},"name":"Windows-driver-samples","full_name":"welljeng/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2025-09-16T04:00:47Z","pushed_at":"2025-10-09T03:26:14Z","updated_at":"2025-09-16T04:00:47Z","html_url":"https://github.com/welljeng/Windows-driver-samples","clone_url":"https://github.com/welljeng/Windows-driver-samples.git","git_url":"git://github.com/welljeng/Windows-driver-samples.git","ssh_url":"git@github.com:welljeng/Windows-driver-samples.git","svn_url":"https://github.com/welljeng/Windows-driver-samples","fork":true,"forks_count":1,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165765,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/welljeng/Windows-driver-samples","archive_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/welljeng/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"welljeng","id":23374999,"node_id":"MDQ6VXNlcjIzMzc0OTk5","avatar_url":"https://avatars.githubusercontent.com/u/23374999?v=4","html_url":"https://github.com/welljeng","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/welljeng","events_url":"https://api.github.com/users/welljeng/events{/privacy}","following_url":"https://api.github.com/users/welljeng/following{/other_user}","followers_url":"https://api.github.com/users/welljeng/followers","gists_url":"https://api.github.com/users/welljeng/gists{/gist_id}","organizations_url":"https://api.github.com/users/welljeng/orgs","received_events_url":"https://api.github.com/users/welljeng/received_events","repos_url":"https://api.github.com/users/welljeng/repos","starred_url":"https://api.github.com/users/welljeng/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/welljeng/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"b472de3ecaf476acddcfd099150aa09b747221e7","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2627076275,"number":1303,"state":"open","locked":false,"title":"FastFAT: Fix 'reqired' typo, in a comment","created_at":"2025-06-29T16:30:38Z","updated_at":"2025-06-29T16:31:37Z","user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1303","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1303","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1303","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/cd71e6450401773b64d0bbc637eabdd4fabf3fd2","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1303.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1303.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1303/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1303/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1303/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes6clgCz","merge_commit_sha":"5b28bca48274e78b97b1ce63c698662463ca9622","requested_teams":[{"id":9426426,"node_id":"T_kwDOAF3p4s4Aj9X6","name":"filesystems","description":"Team for the Windows filesystem samples on GIT","url":"https://api.github.com/organizations/6154722/team/9426426","slug":"filesystems","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/filesystems","members_url":"https://api.github.com/organizations/6154722/team/9426426/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9426426/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1303"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1303"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1303"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1303/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1303/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1303/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/cd71e6450401773b64d0bbc637eabdd4fabf3fd2"}},"head":{"label":"SergeGautherie:SergeGautherie/PRonly_reqired_typo","ref":"SergeGautherie/PRonly_reqired_typo","sha":"cd71e6450401773b64d0bbc637eabdd4fabf3fd2","repo":{"id":190296760,"node_id":"MDEwOlJlcG9zaXRvcnkxOTAyOTY3NjA=","owner":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"name":"Windows-driver-samples","full_name":"SergeGautherie/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2019-06-05T00:06:03Z","pushed_at":"2025-06-29T16:26:32Z","updated_at":"2023-08-24T10:48:04Z","html_url":"https://github.com/SergeGautherie/Windows-driver-samples","clone_url":"https://github.com/SergeGautherie/Windows-driver-samples.git","git_url":"git://github.com/SergeGautherie/Windows-driver-samples.git","ssh_url":"git@github.com:SergeGautherie/Windows-driver-samples.git","svn_url":"https://github.com/SergeGautherie/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165675,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples","archive_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"240f0a647f1573136f823bad6163b6ed8f6f4860","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2622566842,"number":1296,"state":"open","locked":false,"title":"Update exclusions.csv","created_at":"2025-06-26T22:55:17Z","updated_at":"2025-06-26T23:55:52Z","user":{"login":"JakobL-MSFT","id":110699333,"node_id":"U_kgDOBpkjRQ","avatar_url":"https://avatars.githubusercontent.com/u/110699333?v=4","html_url":"https://github.com/JakobL-MSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JakobL-MSFT","events_url":"https://api.github.com/users/JakobL-MSFT/events{/privacy}","following_url":"https://api.github.com/users/JakobL-MSFT/following{/other_user}","followers_url":"https://api.github.com/users/JakobL-MSFT/followers","gists_url":"https://api.github.com/users/JakobL-MSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/JakobL-MSFT/orgs","received_events_url":"https://api.github.com/users/JakobL-MSFT/received_events","repos_url":"https://api.github.com/users/JakobL-MSFT/repos","starred_url":"https://api.github.com/users/JakobL-MSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JakobL-MSFT/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1296","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1296","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1296","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/c84eae09cb1a445eedf40d4e639693716facb509","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1296.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1296.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1296/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1296/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1296/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes6cUTG6","merge_commit_sha":"ec99153673199124da783cfaa663206a3fe82efe","requested_teams":[{"id":8472360,"node_id":"T_kwDOAF3p4s4AgUco","name":"Driver Samples Maintainers","description":"Maintainers for the Windows Driver Samples repository","url":"https://api.github.com/organizations/6154722/team/8472360","slug":"driver-samples-maintainers","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/driver-samples-maintainers","members_url":"https://api.github.com/organizations/6154722/team/8472360/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8472360/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1296"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1296"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1296"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1296/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1296/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1296/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/c84eae09cb1a445eedf40d4e639693716facb509"}},"head":{"label":"microsoft:user/jakobl/test_full_build_develop","ref":"user/jakobl/test_full_build_develop","sha":"c84eae09cb1a445eedf40d4e639693716facb509","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"69e8b5f87dc3fc92fef842f7c50f0cd5668cfb94","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2622563186,"number":1295,"state":"open","locked":false,"title":"Update exclusions.csv","created_at":"2025-06-26T22:53:49Z","updated_at":"2025-06-26T22:53:50Z","user":{"login":"JakobL-MSFT","id":110699333,"node_id":"U_kgDOBpkjRQ","avatar_url":"https://avatars.githubusercontent.com/u/110699333?v=4","html_url":"https://github.com/JakobL-MSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JakobL-MSFT","events_url":"https://api.github.com/users/JakobL-MSFT/events{/privacy}","following_url":"https://api.github.com/users/JakobL-MSFT/following{/other_user}","followers_url":"https://api.github.com/users/JakobL-MSFT/followers","gists_url":"https://api.github.com/users/JakobL-MSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/JakobL-MSFT/orgs","received_events_url":"https://api.github.com/users/JakobL-MSFT/received_events","repos_url":"https://api.github.com/users/JakobL-MSFT/repos","starred_url":"https://api.github.com/users/JakobL-MSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JakobL-MSFT/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1295","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1295","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1295","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/bd1e5dfb6147549c919aaec6201f6e5df23c56ce","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1295.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1295.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1295/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1295/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1295/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes6cUSNy","requested_teams":[{"id":8472360,"node_id":"T_kwDOAF3p4s4AgUco","name":"Driver Samples Maintainers","description":"Maintainers for the Windows Driver Samples repository","url":"https://api.github.com/organizations/6154722/team/8472360","slug":"driver-samples-maintainers","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/driver-samples-maintainers","members_url":"https://api.github.com/organizations/6154722/team/8472360/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8472360/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1295"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1295"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1295"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1295/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1295/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1295/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/bd1e5dfb6147549c919aaec6201f6e5df23c56ce"}},"head":{"label":"microsoft:user/jakobl/test_full_build_main","ref":"user/jakobl/test_full_build_main","sha":"bd1e5dfb6147549c919aaec6201f6e5df23c56ce","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"02b59d168de5812730fda9e0642302d1e3b25877","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2603043335,"number":1292,"state":"open","locked":false,"title":"Update README.md to use WIL","body":"DeviceMFT document is outdated. I am changing this readme to include instructions for installing WIL. It also gives a little more information about DeviceMFT and the pipeline in brief","created_at":"2025-06-18T22:20:40Z","updated_at":"2025-06-20T22:29:06Z","user":{"login":"jiteshkris","id":17018559,"node_id":"MDQ6VXNlcjE3MDE4NTU5","avatar_url":"https://avatars.githubusercontent.com/u/17018559?v=4","html_url":"https://github.com/jiteshkris","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jiteshkris","events_url":"https://api.github.com/users/jiteshkris/events{/privacy}","following_url":"https://api.github.com/users/jiteshkris/following{/other_user}","followers_url":"https://api.github.com/users/jiteshkris/followers","gists_url":"https://api.github.com/users/jiteshkris/gists{/gist_id}","organizations_url":"https://api.github.com/users/jiteshkris/orgs","received_events_url":"https://api.github.com/users/jiteshkris/received_events","repos_url":"https://api.github.com/users/jiteshkris/repos","starred_url":"https://api.github.com/users/jiteshkris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jiteshkris/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1292","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1292","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1292","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/a88b12d7c4f431d61ab047a034fb5b68930c1815","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1292.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1292.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1292/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1292/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1292/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes6bJ0oH","merge_commit_sha":"ca3ec7e275f95cc79fcaafc2f3a4f58fb1b6f925","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1292"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1292"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1292"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1292/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1292/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1292/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/a88b12d7c4f431d61ab047a034fb5b68930c1815"}},"head":{"label":"microsoft:jiteshkris-patch-1","ref":"jiteshkris-patch-1","sha":"a88b12d7c4f431d61ab047a034fb5b68930c1815","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"02b59d168de5812730fda9e0642302d1e3b25877","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2440627767,"number":1286,"state":"open","locked":false,"title":"Update HelperFunctions_RedirectData.cpp","created_at":"2025-04-05T00:17:29Z","updated_at":"2025-04-05T00:17:30Z","user":{"login":"JakobL-MSFT","id":110699333,"node_id":"U_kgDOBpkjRQ","avatar_url":"https://avatars.githubusercontent.com/u/110699333?v=4","html_url":"https://github.com/JakobL-MSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JakobL-MSFT","events_url":"https://api.github.com/users/JakobL-MSFT/events{/privacy}","following_url":"https://api.github.com/users/JakobL-MSFT/following{/other_user}","followers_url":"https://api.github.com/users/JakobL-MSFT/followers","gists_url":"https://api.github.com/users/JakobL-MSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/JakobL-MSFT/orgs","received_events_url":"https://api.github.com/users/JakobL-MSFT/received_events","repos_url":"https://api.github.com/users/JakobL-MSFT/repos","starred_url":"https://api.github.com/users/JakobL-MSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JakobL-MSFT/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1286","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1286","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1286","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/b422b09082a00f9a536df5852d956841b7cc31be","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1286.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1286.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1286/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1286/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1286/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes6ReQY3","merge_commit_sha":"3482f529ae14a94d8f57419477cdd46449473c26","requested_teams":[{"id":8962301,"node_id":"T_kwDOAF3p4s4AiMD9","name":"NetSec","description":"Network Security","url":"https://api.github.com/organizations/6154722/team/8962301","slug":"netsec","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/netsec","members_url":"https://api.github.com/organizations/6154722/team/8962301/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8962301/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1286"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1286"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1286"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1286/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1286/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1286/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/b422b09082a00f9a536df5852d956841b7cc31be"}},"head":{"label":"microsoft:user/jakobl/intentional_build_error_in_main_for_test_purpose","ref":"user/jakobl/intentional_build_error_in_main_for_test_purpose","sha":"b422b09082a00f9a536df5852d956841b7cc31be","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"89cb2a985612eb83e20b15f6445228ee7f681fba","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2310114891,"number":1268,"state":"open","locked":false,"title":"Updated QFE for 3037 release","body":"- updated props file\n- updated config file","created_at":"2025-01-31T22:18:56Z","updated_at":"2025-01-31T22:19:10Z","user":{"login":"ghost","id":10137,"node_id":"MDQ6VXNlcjEwMTM3","avatar_url":"https://avatars.githubusercontent.com/u/10137?v=4","html_url":"https://github.com/ghost","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/ghost","events_url":"https://api.github.com/users/ghost/events{/privacy}","following_url":"https://api.github.com/users/ghost/following{/other_user}","followers_url":"https://api.github.com/users/ghost/followers","gists_url":"https://api.github.com/users/ghost/gists{/gist_id}","organizations_url":"https://api.github.com/users/ghost/orgs","received_events_url":"https://api.github.com/users/ghost/received_events","repos_url":"https://api.github.com/users/ghost/repos","starred_url":"https://api.github.com/users/ghost/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ghost/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1268","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1268","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1268","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/5147530b301b7f4afc8313b620a191c60d644bc2","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1268.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1268.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1268/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1268/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1268/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","assignee":{"login":"JakobL-MSFT","id":110699333,"node_id":"U_kgDOBpkjRQ","avatar_url":"https://avatars.githubusercontent.com/u/110699333?v=4","html_url":"https://github.com/JakobL-MSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JakobL-MSFT","events_url":"https://api.github.com/users/JakobL-MSFT/events{/privacy}","following_url":"https://api.github.com/users/JakobL-MSFT/following{/other_user}","followers_url":"https://api.github.com/users/JakobL-MSFT/followers","gists_url":"https://api.github.com/users/JakobL-MSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/JakobL-MSFT/orgs","received_events_url":"https://api.github.com/users/JakobL-MSFT/received_events","repos_url":"https://api.github.com/users/JakobL-MSFT/repos","starred_url":"https://api.github.com/users/JakobL-MSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JakobL-MSFT/subscriptions"},"assignees":[{"login":"JakobL-MSFT","id":110699333,"node_id":"U_kgDOBpkjRQ","avatar_url":"https://avatars.githubusercontent.com/u/110699333?v=4","html_url":"https://github.com/JakobL-MSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JakobL-MSFT","events_url":"https://api.github.com/users/JakobL-MSFT/events{/privacy}","following_url":"https://api.github.com/users/JakobL-MSFT/following{/other_user}","followers_url":"https://api.github.com/users/JakobL-MSFT/followers","gists_url":"https://api.github.com/users/JakobL-MSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/JakobL-MSFT/orgs","received_events_url":"https://api.github.com/users/JakobL-MSFT/received_events","repos_url":"https://api.github.com/users/JakobL-MSFT/repos","starred_url":"https://api.github.com/users/JakobL-MSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JakobL-MSFT/subscriptions"}],"author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes6JsY5L","requested_teams":[{"id":8472360,"node_id":"T_kwDOAF3p4s4AgUco","name":"Driver Samples Maintainers","description":"Maintainers for the Windows Driver Samples repository","url":"https://api.github.com/organizations/6154722/team/8472360","slug":"driver-samples-maintainers","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/driver-samples-maintainers","members_url":"https://api.github.com/organizations/6154722/team/8472360/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8472360/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1268"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1268"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1268"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1268/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1268/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1268/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/5147530b301b7f4afc8313b620a191c60d644bc2"}},"head":{"label":"microsoft:user/mattmoseley/26100_3037","ref":"user/mattmoseley/26100_3037","sha":"5147530b301b7f4afc8313b620a191c60d644bc2","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"6889bc8ede841fbee442dd668906f2798cd9936d","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2094636829,"number":1222,"state":"open","locked":false,"title":"[usb/usbview] Fix memory leak when handling enumeration error cases","body":"When handling error cases in the `EnumerateHub` function, the following objects aren't freed:\n- ConnectionInfoV2\n- PortConnectorProps\n- DevProps\n- hubCapabilityEx\n\nWhen handling error cases in the `EnumerateHubPorts` function, when a port is not a hub, the following objects aren't freed:\n- stringDescs\n- DevProps","created_at":"2024-09-26T21:42:23Z","updated_at":"2024-11-08T20:21:49Z","user":{"login":"dkala97","id":19359046,"node_id":"MDQ6VXNlcjE5MzU5MDQ2","avatar_url":"https://avatars.githubusercontent.com/u/19359046?v=4","html_url":"https://github.com/dkala97","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/dkala97","events_url":"https://api.github.com/users/dkala97/events{/privacy}","following_url":"https://api.github.com/users/dkala97/following{/other_user}","followers_url":"https://api.github.com/users/dkala97/followers","gists_url":"https://api.github.com/users/dkala97/gists{/gist_id}","organizations_url":"https://api.github.com/users/dkala97/orgs","received_events_url":"https://api.github.com/users/dkala97/received_events","repos_url":"https://api.github.com/users/dkala97/repos","starred_url":"https://api.github.com/users/dkala97/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dkala97/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1222","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1222","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1222","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/97f3d096bacdd9813ccb88f140b7fa5f82ae22cc","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1222.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1222.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1222/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1222/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1222/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes582Z8d","merge_commit_sha":"a8fa1698f24d245e0dee40713305c6e435fc02ee","requested_teams":[{"id":9104021,"node_id":"T_kwDOAF3p4s4AiuqV","name":"CoreOS Buses and WDF","description":"CoreOS Buses and WDF","url":"https://api.github.com/organizations/6154722/team/9104021","slug":"coreos-buses-and-wdf","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/coreos-buses-and-wdf","members_url":"https://api.github.com/organizations/6154722/team/9104021/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9104021/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1222"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1222"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1222"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1222/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1222/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1222/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/97f3d096bacdd9813ccb88f140b7fa5f82ae22cc"}},"head":{"label":"dkala97:main","ref":"main","sha":"97f3d096bacdd9813ccb88f140b7fa5f82ae22cc","repo":{"id":863757669,"node_id":"R_kgDOM3vlZQ","owner":{"login":"dkala97","id":19359046,"node_id":"MDQ6VXNlcjE5MzU5MDQ2","avatar_url":"https://avatars.githubusercontent.com/u/19359046?v=4","html_url":"https://github.com/dkala97","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/dkala97","events_url":"https://api.github.com/users/dkala97/events{/privacy}","following_url":"https://api.github.com/users/dkala97/following{/other_user}","followers_url":"https://api.github.com/users/dkala97/followers","gists_url":"https://api.github.com/users/dkala97/gists{/gist_id}","organizations_url":"https://api.github.com/users/dkala97/orgs","received_events_url":"https://api.github.com/users/dkala97/received_events","repos_url":"https://api.github.com/users/dkala97/repos","starred_url":"https://api.github.com/users/dkala97/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dkala97/subscriptions"},"name":"Windows-driver-samples","full_name":"dkala97/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2024-09-26T21:23:22Z","pushed_at":"2024-11-08T20:21:48Z","updated_at":"2024-11-08T20:21:53Z","html_url":"https://github.com/dkala97/Windows-driver-samples","clone_url":"https://github.com/dkala97/Windows-driver-samples.git","git_url":"git://github.com/dkala97/Windows-driver-samples.git","ssh_url":"git@github.com:dkala97/Windows-driver-samples.git","svn_url":"https://github.com/dkala97/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":164943,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/dkala97/Windows-driver-samples","archive_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/dkala97/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"dkala97","id":19359046,"node_id":"MDQ6VXNlcjE5MzU5MDQ2","avatar_url":"https://avatars.githubusercontent.com/u/19359046?v=4","html_url":"https://github.com/dkala97","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/dkala97","events_url":"https://api.github.com/users/dkala97/events{/privacy}","following_url":"https://api.github.com/users/dkala97/following{/other_user}","followers_url":"https://api.github.com/users/dkala97/followers","gists_url":"https://api.github.com/users/dkala97/gists{/gist_id}","organizations_url":"https://api.github.com/users/dkala97/orgs","received_events_url":"https://api.github.com/users/dkala97/received_events","repos_url":"https://api.github.com/users/dkala97/repos","starred_url":"https://api.github.com/users/dkala97/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dkala97/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"76f3c4f35f40634401ede80f64554794776c4240","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2056633377,"number":1212,"state":"open","locked":false,"title":"Update Capture.cpp","body":"Add Return check inside NT_SUCCESS macro","created_at":"2024-09-05T22:22:47Z","updated_at":"2024-10-24T16:53:56Z","user":{"login":"gerritsMSFT","id":55601905,"node_id":"MDQ6VXNlcjU1NjAxOTA1","avatar_url":"https://avatars.githubusercontent.com/u/55601905?v=4","html_url":"https://github.com/gerritsMSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/gerritsMSFT","events_url":"https://api.github.com/users/gerritsMSFT/events{/privacy}","following_url":"https://api.github.com/users/gerritsMSFT/following{/other_user}","followers_url":"https://api.github.com/users/gerritsMSFT/followers","gists_url":"https://api.github.com/users/gerritsMSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/gerritsMSFT/orgs","received_events_url":"https://api.github.com/users/gerritsMSFT/received_events","repos_url":"https://api.github.com/users/gerritsMSFT/repos","starred_url":"https://api.github.com/users/gerritsMSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gerritsMSFT/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1212","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1212","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1212","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/efd0d54805a619566cb89ee6321695313a31fac8","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1212.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1212.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1212/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1212/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1212/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes56lbwh","merge_commit_sha":"d8eec425ef70bdf5ba618a8b8364700799a843c8","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1212"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1212"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1212"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1212/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1212/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1212/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/efd0d54805a619566cb89ee6321695313a31fac8"}},"head":{"label":"gerritsMSFT:patch-5","ref":"patch-5","sha":"efd0d54805a619566cb89ee6321695313a31fac8","repo":{"id":575173747,"node_id":"R_kgDOIkh0cw","owner":{"login":"gerritsMSFT","id":55601905,"node_id":"MDQ6VXNlcjU1NjAxOTA1","avatar_url":"https://avatars.githubusercontent.com/u/55601905?v=4","html_url":"https://github.com/gerritsMSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/gerritsMSFT","events_url":"https://api.github.com/users/gerritsMSFT/events{/privacy}","following_url":"https://api.github.com/users/gerritsMSFT/following{/other_user}","followers_url":"https://api.github.com/users/gerritsMSFT/followers","gists_url":"https://api.github.com/users/gerritsMSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/gerritsMSFT/orgs","received_events_url":"https://api.github.com/users/gerritsMSFT/received_events","repos_url":"https://api.github.com/users/gerritsMSFT/repos","starred_url":"https://api.github.com/users/gerritsMSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gerritsMSFT/subscriptions"},"name":"Windows-driver-samples","full_name":"gerritsMSFT/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2022-12-06T23:15:52Z","pushed_at":"2024-10-24T16:53:54Z","updated_at":"2022-12-06T23:16:38Z","html_url":"https://github.com/gerritsMSFT/Windows-driver-samples","clone_url":"https://github.com/gerritsMSFT/Windows-driver-samples.git","git_url":"git://github.com/gerritsMSFT/Windows-driver-samples.git","ssh_url":"git@github.com:gerritsMSFT/Windows-driver-samples.git","svn_url":"https://github.com/gerritsMSFT/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":1,"watchers_count":1,"watchers":1,"size":164975,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples","archive_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"gerritsMSFT","id":55601905,"node_id":"MDQ6VXNlcjU1NjAxOTA1","avatar_url":"https://avatars.githubusercontent.com/u/55601905?v=4","html_url":"https://github.com/gerritsMSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/gerritsMSFT","events_url":"https://api.github.com/users/gerritsMSFT/events{/privacy}","following_url":"https://api.github.com/users/gerritsMSFT/following{/other_user}","followers_url":"https://api.github.com/users/gerritsMSFT/followers","gists_url":"https://api.github.com/users/gerritsMSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/gerritsMSFT/orgs","received_events_url":"https://api.github.com/users/gerritsMSFT/received_events","repos_url":"https://api.github.com/users/gerritsMSFT/repos","starred_url":"https://api.github.com/users/gerritsMSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gerritsMSFT/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"6df20f12752e82a9819377497b815dbe1cbce66f","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2015200332,"number":1205,"state":"open","locked":false,"title":"Update tdriver.c","body":"'Status': local variable is initialized but not referenced","created_at":"2024-08-12T14:19:55Z","updated_at":"2024-08-12T14:19:55Z","user":{"login":"andreiminca","id":48168206,"node_id":"MDQ6VXNlcjQ4MTY4MjA2","avatar_url":"https://avatars.githubusercontent.com/u/48168206?v=4","html_url":"https://github.com/andreiminca","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/andreiminca","events_url":"https://api.github.com/users/andreiminca/events{/privacy}","following_url":"https://api.github.com/users/andreiminca/following{/other_user}","followers_url":"https://api.github.com/users/andreiminca/followers","gists_url":"https://api.github.com/users/andreiminca/gists{/gist_id}","organizations_url":"https://api.github.com/users/andreiminca/orgs","received_events_url":"https://api.github.com/users/andreiminca/received_events","repos_url":"https://api.github.com/users/andreiminca/repos","starred_url":"https://api.github.com/users/andreiminca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andreiminca/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1205","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1205","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1205","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/68255d9953a607187e0f1dd1633e712b5a7a34a0","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1205.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1205.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1205/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1205/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1205/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes54HYRM","merge_commit_sha":"16f39d685affb0292bf1a5d1d6f1d06c93c9e7f3","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1205"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1205"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1205"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1205/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1205/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1205/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/68255d9953a607187e0f1dd1633e712b5a7a34a0"}},"head":{"label":"andreiminca:andreiminca-patch-1","ref":"andreiminca-patch-1","sha":"68255d9953a607187e0f1dd1633e712b5a7a34a0","repo":{"id":841495060,"node_id":"R_kgDOMigyFA","owner":{"login":"andreiminca","id":48168206,"node_id":"MDQ6VXNlcjQ4MTY4MjA2","avatar_url":"https://avatars.githubusercontent.com/u/48168206?v=4","html_url":"https://github.com/andreiminca","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/andreiminca","events_url":"https://api.github.com/users/andreiminca/events{/privacy}","following_url":"https://api.github.com/users/andreiminca/following{/other_user}","followers_url":"https://api.github.com/users/andreiminca/followers","gists_url":"https://api.github.com/users/andreiminca/gists{/gist_id}","organizations_url":"https://api.github.com/users/andreiminca/orgs","received_events_url":"https://api.github.com/users/andreiminca/received_events","repos_url":"https://api.github.com/users/andreiminca/repos","starred_url":"https://api.github.com/users/andreiminca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andreiminca/subscriptions"},"name":"Windows-driver-samples","full_name":"andreiminca/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2024-08-12T14:17:21Z","pushed_at":"2024-08-12T14:19:14Z","updated_at":"2024-08-12T14:19:26Z","html_url":"https://github.com/andreiminca/Windows-driver-samples","clone_url":"https://github.com/andreiminca/Windows-driver-samples.git","git_url":"git://github.com/andreiminca/Windows-driver-samples.git","ssh_url":"git@github.com:andreiminca/Windows-driver-samples.git","svn_url":"https://github.com/andreiminca/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":164852,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/andreiminca/Windows-driver-samples","archive_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/andreiminca/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"andreiminca","id":48168206,"node_id":"MDQ6VXNlcjQ4MTY4MjA2","avatar_url":"https://avatars.githubusercontent.com/u/48168206?v=4","html_url":"https://github.com/andreiminca","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/andreiminca","events_url":"https://api.github.com/users/andreiminca/events{/privacy}","following_url":"https://api.github.com/users/andreiminca/following{/other_user}","followers_url":"https://api.github.com/users/andreiminca/followers","gists_url":"https://api.github.com/users/andreiminca/gists{/gist_id}","organizations_url":"https://api.github.com/users/andreiminca/orgs","received_events_url":"https://api.github.com/users/andreiminca/received_events","repos_url":"https://api.github.com/users/andreiminca/repos","starred_url":"https://api.github.com/users/andreiminca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andreiminca/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"b3af8c8f9bd508f54075da2f2516b31d05cd52c8","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":2005286997,"number":1203,"state":"open","locked":false,"title":"Replace IoCreateDevice to IoCreateDeviceSecure.","body":"Replace IoCreateDevice to IoCreateDeviceSecure.\n\nDocumentation of IoCreateDevice mentions as follows. This sample is creating a named device object, and it is not specified security descriptor in the INF file. Thus, it should use IoCreateDeviceSecure instead of IoCreateDevice.\n\n[IoCreateDevice function (wdm.h)](https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/nf-wdm-iocreatedevice#remarks)\n> IoCreateDevice can only be used to create an unnamed device object, or a named device object for which a security descriptor is set by an INF file. Otherwise, drivers must use IoCreateDeviceSecure to create named device objects.\n\n","created_at":"2024-08-06T05:55:19Z","updated_at":"2024-08-06T15:43:11Z","user":{"login":"riwaida","id":42270443,"node_id":"MDQ6VXNlcjQyMjcwNDQz","avatar_url":"https://avatars.githubusercontent.com/u/42270443?v=4","html_url":"https://github.com/riwaida","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/riwaida","events_url":"https://api.github.com/users/riwaida/events{/privacy}","following_url":"https://api.github.com/users/riwaida/following{/other_user}","followers_url":"https://api.github.com/users/riwaida/followers","gists_url":"https://api.github.com/users/riwaida/gists{/gist_id}","organizations_url":"https://api.github.com/users/riwaida/orgs","received_events_url":"https://api.github.com/users/riwaida/received_events","repos_url":"https://api.github.com/users/riwaida/repos","starred_url":"https://api.github.com/users/riwaida/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/riwaida/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1203","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1203","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1203","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ffa395b6e499a97fd224e18ad1037bcfca03e299","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1203.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1203.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1203/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1203/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1203/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes53hkBV","merge_commit_sha":"492e172c017bbe076ebebd1bd9bfd9415b95699c","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1203"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1203"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1203"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1203/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1203/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1203/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ffa395b6e499a97fd224e18ad1037bcfca03e299"}},"head":{"label":"riwaida:patch-1","ref":"patch-1","sha":"ffa395b6e499a97fd224e18ad1037bcfca03e299","repo":{"id":838669119,"node_id":"R_kgDOMf0TPw","owner":{"login":"riwaida","id":42270443,"node_id":"MDQ6VXNlcjQyMjcwNDQz","avatar_url":"https://avatars.githubusercontent.com/u/42270443?v=4","html_url":"https://github.com/riwaida","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/riwaida","events_url":"https://api.github.com/users/riwaida/events{/privacy}","following_url":"https://api.github.com/users/riwaida/following{/other_user}","followers_url":"https://api.github.com/users/riwaida/followers","gists_url":"https://api.github.com/users/riwaida/gists{/gist_id}","organizations_url":"https://api.github.com/users/riwaida/orgs","received_events_url":"https://api.github.com/users/riwaida/received_events","repos_url":"https://api.github.com/users/riwaida/repos","starred_url":"https://api.github.com/users/riwaida/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/riwaida/subscriptions"},"name":"Windows-driver-samples","full_name":"riwaida/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2024-08-06T05:47:24Z","pushed_at":"2026-02-04T02:48:17Z","updated_at":"2026-02-04T02:48:20Z","html_url":"https://github.com/riwaida/Windows-driver-samples","clone_url":"https://github.com/riwaida/Windows-driver-samples.git","git_url":"git://github.com/riwaida/Windows-driver-samples.git","ssh_url":"git@github.com:riwaida/Windows-driver-samples.git","svn_url":"https://github.com/riwaida/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165838,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/riwaida/Windows-driver-samples","archive_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/riwaida/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"riwaida","id":42270443,"node_id":"MDQ6VXNlcjQyMjcwNDQz","avatar_url":"https://avatars.githubusercontent.com/u/42270443?v=4","html_url":"https://github.com/riwaida","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/riwaida","events_url":"https://api.github.com/users/riwaida/events{/privacy}","following_url":"https://api.github.com/users/riwaida/following{/other_user}","followers_url":"https://api.github.com/users/riwaida/followers","gists_url":"https://api.github.com/users/riwaida/gists{/gist_id}","organizations_url":"https://api.github.com/users/riwaida/orgs","received_events_url":"https://api.github.com/users/riwaida/received_events","repos_url":"https://api.github.com/users/riwaida/repos","starred_url":"https://api.github.com/users/riwaida/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/riwaida/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"b3af8c8f9bd508f54075da2f2516b31d05cd52c8","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1968875363,"number":1199,"state":"open","locked":false,"title":"Update userscan.c","body":"shouldn't this being abortion port?\n\nconnection port should already be closed in UserScanClosePorts function.","created_at":"2024-07-15T08:11:30Z","updated_at":"2024-07-16T17:38:54Z","user":{"login":"wqreytuk","id":48377190,"node_id":"MDQ6VXNlcjQ4Mzc3MTkw","avatar_url":"https://avatars.githubusercontent.com/u/48377190?v=4","html_url":"https://github.com/wqreytuk","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/wqreytuk","events_url":"https://api.github.com/users/wqreytuk/events{/privacy}","following_url":"https://api.github.com/users/wqreytuk/following{/other_user}","followers_url":"https://api.github.com/users/wqreytuk/followers","gists_url":"https://api.github.com/users/wqreytuk/gists{/gist_id}","organizations_url":"https://api.github.com/users/wqreytuk/orgs","received_events_url":"https://api.github.com/users/wqreytuk/received_events","repos_url":"https://api.github.com/users/wqreytuk/repos","starred_url":"https://api.github.com/users/wqreytuk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wqreytuk/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1199","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1199","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1199","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/c28389118fafce17aa8e9d8cbc8d927fe0119da0","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1199.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1199.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1199/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1199/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1199/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes51Wqdj","merge_commit_sha":"9e1ef021a9b3fbcceaa727be5f109e68bba899c7","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1199"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1199"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1199"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1199/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1199/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1199/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/c28389118fafce17aa8e9d8cbc8d927fe0119da0"}},"head":{"label":"wqreytuk:patch-2","ref":"patch-2","sha":"c28389118fafce17aa8e9d8cbc8d927fe0119da0","repo":{"id":828738107,"node_id":"R_kgDOMWWKOw","owner":{"login":"wqreytuk","id":48377190,"node_id":"MDQ6VXNlcjQ4Mzc3MTkw","avatar_url":"https://avatars.githubusercontent.com/u/48377190?v=4","html_url":"https://github.com/wqreytuk","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/wqreytuk","events_url":"https://api.github.com/users/wqreytuk/events{/privacy}","following_url":"https://api.github.com/users/wqreytuk/following{/other_user}","followers_url":"https://api.github.com/users/wqreytuk/followers","gists_url":"https://api.github.com/users/wqreytuk/gists{/gist_id}","organizations_url":"https://api.github.com/users/wqreytuk/orgs","received_events_url":"https://api.github.com/users/wqreytuk/received_events","repos_url":"https://api.github.com/users/wqreytuk/repos","starred_url":"https://api.github.com/users/wqreytuk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wqreytuk/subscriptions"},"name":"Windows-driver-samples","full_name":"wqreytuk/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2024-07-15T03:04:19Z","pushed_at":"2024-07-15T08:11:02Z","updated_at":"2024-07-15T03:04:19Z","html_url":"https://github.com/wqreytuk/Windows-driver-samples","clone_url":"https://github.com/wqreytuk/Windows-driver-samples.git","git_url":"git://github.com/wqreytuk/Windows-driver-samples.git","ssh_url":"git@github.com:wqreytuk/Windows-driver-samples.git","svn_url":"https://github.com/wqreytuk/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165125,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples","archive_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"wqreytuk","id":48377190,"node_id":"MDQ6VXNlcjQ4Mzc3MTkw","avatar_url":"https://avatars.githubusercontent.com/u/48377190?v=4","html_url":"https://github.com/wqreytuk","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/wqreytuk","events_url":"https://api.github.com/users/wqreytuk/events{/privacy}","following_url":"https://api.github.com/users/wqreytuk/following{/other_user}","followers_url":"https://api.github.com/users/wqreytuk/followers","gists_url":"https://api.github.com/users/wqreytuk/gists{/gist_id}","organizations_url":"https://api.github.com/users/wqreytuk/orgs","received_events_url":"https://api.github.com/users/wqreytuk/received_events","repos_url":"https://api.github.com/users/wqreytuk/repos","starred_url":"https://api.github.com/users/wqreytuk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wqreytuk/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"b3af8c8f9bd508f54075da2f2516b31d05cd52c8","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1968553395,"number":1198,"state":"open","locked":false,"title":"Update userscan.c","body":"typo","created_at":"2024-07-15T03:04:56Z","updated_at":"2024-07-16T17:28:57Z","user":{"login":"wqreytuk","id":48377190,"node_id":"MDQ6VXNlcjQ4Mzc3MTkw","avatar_url":"https://avatars.githubusercontent.com/u/48377190?v=4","html_url":"https://github.com/wqreytuk","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/wqreytuk","events_url":"https://api.github.com/users/wqreytuk/events{/privacy}","following_url":"https://api.github.com/users/wqreytuk/following{/other_user}","followers_url":"https://api.github.com/users/wqreytuk/followers","gists_url":"https://api.github.com/users/wqreytuk/gists{/gist_id}","organizations_url":"https://api.github.com/users/wqreytuk/orgs","received_events_url":"https://api.github.com/users/wqreytuk/received_events","repos_url":"https://api.github.com/users/wqreytuk/repos","starred_url":"https://api.github.com/users/wqreytuk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wqreytuk/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1198","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1198","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1198","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/45e229309f0eec89a3a75946b591e6e9b7b67bab","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1198.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1198.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1198/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1198/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1198/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes51Vb2z","merge_commit_sha":"75e8ebd8cb7ef2d17041c3e23aa79fc4d75ea77c","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1198"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1198"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1198"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1198/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1198/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1198/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/45e229309f0eec89a3a75946b591e6e9b7b67bab"}},"head":{"label":"wqreytuk:patch-1","ref":"patch-1","sha":"45e229309f0eec89a3a75946b591e6e9b7b67bab","repo":{"id":828738107,"node_id":"R_kgDOMWWKOw","owner":{"login":"wqreytuk","id":48377190,"node_id":"MDQ6VXNlcjQ4Mzc3MTkw","avatar_url":"https://avatars.githubusercontent.com/u/48377190?v=4","html_url":"https://github.com/wqreytuk","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/wqreytuk","events_url":"https://api.github.com/users/wqreytuk/events{/privacy}","following_url":"https://api.github.com/users/wqreytuk/following{/other_user}","followers_url":"https://api.github.com/users/wqreytuk/followers","gists_url":"https://api.github.com/users/wqreytuk/gists{/gist_id}","organizations_url":"https://api.github.com/users/wqreytuk/orgs","received_events_url":"https://api.github.com/users/wqreytuk/received_events","repos_url":"https://api.github.com/users/wqreytuk/repos","starred_url":"https://api.github.com/users/wqreytuk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wqreytuk/subscriptions"},"name":"Windows-driver-samples","full_name":"wqreytuk/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2024-07-15T03:04:19Z","pushed_at":"2024-07-15T08:11:02Z","updated_at":"2024-07-15T03:04:19Z","html_url":"https://github.com/wqreytuk/Windows-driver-samples","clone_url":"https://github.com/wqreytuk/Windows-driver-samples.git","git_url":"git://github.com/wqreytuk/Windows-driver-samples.git","ssh_url":"git@github.com:wqreytuk/Windows-driver-samples.git","svn_url":"https://github.com/wqreytuk/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165125,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples","archive_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/wqreytuk/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"wqreytuk","id":48377190,"node_id":"MDQ6VXNlcjQ4Mzc3MTkw","avatar_url":"https://avatars.githubusercontent.com/u/48377190?v=4","html_url":"https://github.com/wqreytuk","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/wqreytuk","events_url":"https://api.github.com/users/wqreytuk/events{/privacy}","following_url":"https://api.github.com/users/wqreytuk/following{/other_user}","followers_url":"https://api.github.com/users/wqreytuk/followers","gists_url":"https://api.github.com/users/wqreytuk/gists{/gist_id}","organizations_url":"https://api.github.com/users/wqreytuk/orgs","received_events_url":"https://api.github.com/users/wqreytuk/received_events","repos_url":"https://api.github.com/users/wqreytuk/repos","starred_url":"https://api.github.com/users/wqreytuk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wqreytuk/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"b3af8c8f9bd508f54075da2f2516b31d05cd52c8","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1940923507,"number":1192,"state":"open","locked":false,"title":"AVS Camera AddComServer","body":"Modified AVSCamera.inx to show DeviceMFT registration using AddComServer/AddComClass","created_at":"2024-06-26T21:39:47Z","updated_at":"2024-06-30T17:07:45Z","user":{"login":"gerritsMSFT","id":55601905,"node_id":"MDQ6VXNlcjU1NjAxOTA1","avatar_url":"https://avatars.githubusercontent.com/u/55601905?v=4","html_url":"https://github.com/gerritsMSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/gerritsMSFT","events_url":"https://api.github.com/users/gerritsMSFT/events{/privacy}","following_url":"https://api.github.com/users/gerritsMSFT/following{/other_user}","followers_url":"https://api.github.com/users/gerritsMSFT/followers","gists_url":"https://api.github.com/users/gerritsMSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/gerritsMSFT/orgs","received_events_url":"https://api.github.com/users/gerritsMSFT/received_events","repos_url":"https://api.github.com/users/gerritsMSFT/repos","starred_url":"https://api.github.com/users/gerritsMSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gerritsMSFT/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1192","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1192","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1192","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/4905672187780ad9173bcec81f79934f078ef955","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1192.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1192.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1192/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1192/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1192/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5zsCRz","requested_teams":[{"id":8819833,"node_id":"T_kwDOAF3p4s4AhpR5","name":"CameraPlatDev","description":"Windows OS Camera Platform Team GitHub","url":"https://api.github.com/organizations/6154722/team/8819833","slug":"cameraplatdev","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/cameraplatdev","members_url":"https://api.github.com/organizations/6154722/team/8819833/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8819833/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1192"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1192"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1192"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1192/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1192/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1192/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/4905672187780ad9173bcec81f79934f078ef955"}},"head":{"label":"gerritsMSFT:GerritS-AvsCamera-AddComServer","ref":"GerritS-AvsCamera-AddComServer","sha":"4905672187780ad9173bcec81f79934f078ef955","repo":{"id":575173747,"node_id":"R_kgDOIkh0cw","owner":{"login":"gerritsMSFT","id":55601905,"node_id":"MDQ6VXNlcjU1NjAxOTA1","avatar_url":"https://avatars.githubusercontent.com/u/55601905?v=4","html_url":"https://github.com/gerritsMSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/gerritsMSFT","events_url":"https://api.github.com/users/gerritsMSFT/events{/privacy}","following_url":"https://api.github.com/users/gerritsMSFT/following{/other_user}","followers_url":"https://api.github.com/users/gerritsMSFT/followers","gists_url":"https://api.github.com/users/gerritsMSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/gerritsMSFT/orgs","received_events_url":"https://api.github.com/users/gerritsMSFT/received_events","repos_url":"https://api.github.com/users/gerritsMSFT/repos","starred_url":"https://api.github.com/users/gerritsMSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gerritsMSFT/subscriptions"},"name":"Windows-driver-samples","full_name":"gerritsMSFT/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2022-12-06T23:15:52Z","pushed_at":"2024-10-24T16:53:54Z","updated_at":"2022-12-06T23:16:38Z","html_url":"https://github.com/gerritsMSFT/Windows-driver-samples","clone_url":"https://github.com/gerritsMSFT/Windows-driver-samples.git","git_url":"git://github.com/gerritsMSFT/Windows-driver-samples.git","ssh_url":"git@github.com:gerritsMSFT/Windows-driver-samples.git","svn_url":"https://github.com/gerritsMSFT/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":1,"watchers_count":1,"watchers":1,"size":164975,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples","archive_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"gerritsMSFT","id":55601905,"node_id":"MDQ6VXNlcjU1NjAxOTA1","avatar_url":"https://avatars.githubusercontent.com/u/55601905?v=4","html_url":"https://github.com/gerritsMSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/gerritsMSFT","events_url":"https://api.github.com/users/gerritsMSFT/events{/privacy}","following_url":"https://api.github.com/users/gerritsMSFT/following{/other_user}","followers_url":"https://api.github.com/users/gerritsMSFT/followers","gists_url":"https://api.github.com/users/gerritsMSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/gerritsMSFT/orgs","received_events_url":"https://api.github.com/users/gerritsMSFT/received_events","repos_url":"https://api.github.com/users/gerritsMSFT/repos","starred_url":"https://api.github.com/users/gerritsMSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gerritsMSFT/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"3327adfd7bfd41cc4065312ca4893a0aa2ce1a01","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1930259155,"number":1187,"state":"open","locked":false,"title":"simbatt: Provide instructions for how to test the driver","body":"Add instructions for how to install the driver, simulate two batteries, modify battery parameters and clean up afterwards. This will make it easier to get started with the driver.\n\n## Open questions\n* Please let me know if the proposal doesn't adhere to the project "style" and I'll do my best to update it accordingly.\n* The instructions for getting the `battery` handle in the `IOCTL_SIMBATT_SET_STATUS` example are a bit vague, since I didn't want to be overly verbose. Please let me know if you either prefer to drop those instructions altogether, or make them more complete. Alternatively, maybe it could be worthwhile to introduce a command-line tool to ease testing of the IOCTL calls?\n\n## Prerequisites\nThe instructions assume that testsigning is already enabled with `bcdedit /set testsigning on` and that the driver signing certificate is trusted with `certutil.exe -addstore root simbatt.cer` and `certutil.exe -f -addstore trustedpublisher simbatt.cer`.","created_at":"2024-06-20T10:02:52Z","updated_at":"2025-10-09T19:42:49Z","user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1187","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1187","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1187","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/2769d4292d3f67ae687c975226d7f5eb8e28bd84","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1187.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1187.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1187/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1187/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1187/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5zDWrT","merge_commit_sha":"a4a6423f460c06bcf14d40d3d7d332c1e448b123","requested_teams":[{"id":9433825,"node_id":"T_kwDOAF3p4s4Aj_Lh","name":"EE Devs","description":"Energy Efficiency Developers","url":"https://api.github.com/organizations/6154722/team/9433825","slug":"ee-devs","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/ee-devs","members_url":"https://api.github.com/organizations/6154722/team/9433825/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9433825/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1187"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1187"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1187"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1187/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1187/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1187/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/2769d4292d3f67ae687c975226d7f5eb8e28bd84"}},"head":{"label":"forderud:simbatt-test-doc","ref":"simbatt-test-doc","sha":"2769d4292d3f67ae687c975226d7f5eb8e28bd84","repo":{"id":653562182,"node_id":"R_kgDOJvSRRg","owner":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"name":"Windows-driver-samples","full_name":"forderud/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2023-06-14T09:38:53Z","pushed_at":"2025-10-09T19:47:53Z","updated_at":"2024-08-21T10:22:33Z","html_url":"https://github.com/forderud/Windows-driver-samples","clone_url":"https://github.com/forderud/Windows-driver-samples.git","git_url":"git://github.com/forderud/Windows-driver-samples.git","ssh_url":"git@github.com:forderud/Windows-driver-samples.git","svn_url":"https://github.com/forderud/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165789,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/forderud/Windows-driver-samples","archive_url":"https://api.github.com/repos/forderud/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/forderud/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/forderud/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/forderud/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/forderud/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/forderud/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/forderud/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/forderud/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/forderud/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/forderud/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/forderud/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/forderud/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/forderud/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/forderud/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/forderud/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"ed3dbe56378117a15105099870f2397671ad99ab","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1890475833,"number":1175,"state":"open","locked":false,"title":"51217363","created_at":"2024-05-27T16:15:52Z","updated_at":"2024-06-28T17:14:00Z","user":{"login":"JakobL-MSFT","id":110699333,"node_id":"U_kgDOBpkjRQ","avatar_url":"https://avatars.githubusercontent.com/u/110699333?v=4","html_url":"https://github.com/JakobL-MSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JakobL-MSFT","events_url":"https://api.github.com/users/JakobL-MSFT/events{/privacy}","following_url":"https://api.github.com/users/JakobL-MSFT/following{/other_user}","followers_url":"https://api.github.com/users/JakobL-MSFT/followers","gists_url":"https://api.github.com/users/JakobL-MSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/JakobL-MSFT/orgs","received_events_url":"https://api.github.com/users/JakobL-MSFT/received_events","repos_url":"https://api.github.com/users/JakobL-MSFT/repos","starred_url":"https://api.github.com/users/JakobL-MSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JakobL-MSFT/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1175","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1175","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1175","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/9db66427fe5571665fef772aa0a76d753bd0aab6","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1175.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1175.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1175/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1175/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1175/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","assignee":{"login":"NeoAdonis","id":1562728,"node_id":"MDQ6VXNlcjE1NjI3Mjg=","avatar_url":"https://avatars.githubusercontent.com/u/1562728?v=4","html_url":"https://github.com/NeoAdonis","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/NeoAdonis","events_url":"https://api.github.com/users/NeoAdonis/events{/privacy}","following_url":"https://api.github.com/users/NeoAdonis/following{/other_user}","followers_url":"https://api.github.com/users/NeoAdonis/followers","gists_url":"https://api.github.com/users/NeoAdonis/gists{/gist_id}","organizations_url":"https://api.github.com/users/NeoAdonis/orgs","received_events_url":"https://api.github.com/users/NeoAdonis/received_events","repos_url":"https://api.github.com/users/NeoAdonis/repos","starred_url":"https://api.github.com/users/NeoAdonis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/NeoAdonis/subscriptions"},"assignees":[{"login":"NeoAdonis","id":1562728,"node_id":"MDQ6VXNlcjE1NjI3Mjg=","avatar_url":"https://avatars.githubusercontent.com/u/1562728?v=4","html_url":"https://github.com/NeoAdonis","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/NeoAdonis","events_url":"https://api.github.com/users/NeoAdonis/events{/privacy}","following_url":"https://api.github.com/users/NeoAdonis/following{/other_user}","followers_url":"https://api.github.com/users/NeoAdonis/followers","gists_url":"https://api.github.com/users/NeoAdonis/gists{/gist_id}","organizations_url":"https://api.github.com/users/NeoAdonis/orgs","received_events_url":"https://api.github.com/users/NeoAdonis/received_events","repos_url":"https://api.github.com/users/NeoAdonis/repos","starred_url":"https://api.github.com/users/NeoAdonis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/NeoAdonis/subscriptions"}],"author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5wrl85","requested_teams":[{"id":8472360,"node_id":"T_kwDOAF3p4s4AgUco","name":"Driver Samples Maintainers","description":"Maintainers for the Windows Driver Samples repository","url":"https://api.github.com/organizations/6154722/team/8472360","slug":"driver-samples-maintainers","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/driver-samples-maintainers","members_url":"https://api.github.com/organizations/6154722/team/8472360/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8472360/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1175"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1175"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1175"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1175/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1175/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1175/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/9db66427fe5571665fef772aa0a76d753bd0aab6"}},"head":{"label":"microsoft:user/jakobl/51217363","ref":"user/jakobl/51217363","sha":"9db66427fe5571665fef772aa0a76d753bd0aab6","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"b3af8c8f9bd508f54075da2f2516b31d05cd52c8","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1885272248,"number":1174,"state":"open","locked":false,"title":"FASTFAT: Remove erroneous comment","body":"Clearly a copy-paste typo from other similar code that was handling BOOT_AREA_INFO","created_at":"2024-05-23T19:14:09Z","updated_at":"2024-05-23T19:14:10Z","user":{"login":"HBelusca","id":1969829,"node_id":"MDQ6VXNlcjE5Njk4Mjk=","avatar_url":"https://avatars.githubusercontent.com/u/1969829?v=4","html_url":"https://github.com/HBelusca","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/HBelusca","events_url":"https://api.github.com/users/HBelusca/events{/privacy}","following_url":"https://api.github.com/users/HBelusca/following{/other_user}","followers_url":"https://api.github.com/users/HBelusca/followers","gists_url":"https://api.github.com/users/HBelusca/gists{/gist_id}","organizations_url":"https://api.github.com/users/HBelusca/orgs","received_events_url":"https://api.github.com/users/HBelusca/received_events","repos_url":"https://api.github.com/users/HBelusca/repos","starred_url":"https://api.github.com/users/HBelusca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/HBelusca/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1174","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1174","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1174","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/1a9410e3957b0cbfb249a5a1dfddbc9554968110","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1174.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1174.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1174/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1174/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1174/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes5wXvi4","merge_commit_sha":"1648e9928366d753bacfa992fa8769849a483101","requested_teams":[{"id":9426426,"node_id":"T_kwDOAF3p4s4Aj9X6","name":"filesystems","description":"Team for the Windows filesystem samples on GIT","url":"https://api.github.com/organizations/6154722/team/9426426","slug":"filesystems","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/filesystems","members_url":"https://api.github.com/organizations/6154722/team/9426426/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9426426/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1174"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1174"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1174"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1174/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1174/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1174/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/1a9410e3957b0cbfb249a5a1dfddbc9554968110"}},"head":{"label":"HBelusca:patch-1","ref":"patch-1","sha":"1a9410e3957b0cbfb249a5a1dfddbc9554968110","repo":{"id":805042442,"node_id":"R_kgDOL_v5Cg","owner":{"login":"HBelusca","id":1969829,"node_id":"MDQ6VXNlcjE5Njk4Mjk=","avatar_url":"https://avatars.githubusercontent.com/u/1969829?v=4","html_url":"https://github.com/HBelusca","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/HBelusca","events_url":"https://api.github.com/users/HBelusca/events{/privacy}","following_url":"https://api.github.com/users/HBelusca/following{/other_user}","followers_url":"https://api.github.com/users/HBelusca/followers","gists_url":"https://api.github.com/users/HBelusca/gists{/gist_id}","organizations_url":"https://api.github.com/users/HBelusca/orgs","received_events_url":"https://api.github.com/users/HBelusca/received_events","repos_url":"https://api.github.com/users/HBelusca/repos","starred_url":"https://api.github.com/users/HBelusca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/HBelusca/subscriptions"},"name":"Windows-driver-samples","full_name":"HBelusca/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2024-05-23T19:11:45Z","pushed_at":"2024-05-23T19:13:54Z","updated_at":"2024-05-23T19:11:45Z","html_url":"https://github.com/HBelusca/Windows-driver-samples","clone_url":"https://github.com/HBelusca/Windows-driver-samples.git","git_url":"git://github.com/HBelusca/Windows-driver-samples.git","ssh_url":"git@github.com:HBelusca/Windows-driver-samples.git","svn_url":"https://github.com/HBelusca/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":164994,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/HBelusca/Windows-driver-samples","archive_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/HBelusca/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"HBelusca","id":1969829,"node_id":"MDQ6VXNlcjE5Njk4Mjk=","avatar_url":"https://avatars.githubusercontent.com/u/1969829?v=4","html_url":"https://github.com/HBelusca","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/HBelusca","events_url":"https://api.github.com/users/HBelusca/events{/privacy}","following_url":"https://api.github.com/users/HBelusca/following{/other_user}","followers_url":"https://api.github.com/users/HBelusca/followers","gists_url":"https://api.github.com/users/HBelusca/gists{/gist_id}","organizations_url":"https://api.github.com/users/HBelusca/orgs","received_events_url":"https://api.github.com/users/HBelusca/received_events","repos_url":"https://api.github.com/users/HBelusca/repos","starred_url":"https://api.github.com/users/HBelusca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/HBelusca/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"c19f2e4cffadef34105407da20108ec2f196ac53","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1884772579,"number":1173,"state":"open","locked":false,"title":"Update README.md","body":"Remove some vestigial UMDF references from toaster README.md","created_at":"2024-05-23T14:39:48Z","updated_at":"2024-05-23T14:39:49Z","user":{"login":"GabeNI","id":75270571,"node_id":"MDQ6VXNlcjc1MjcwNTcx","avatar_url":"https://avatars.githubusercontent.com/u/75270571?v=4","html_url":"https://github.com/GabeNI","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/GabeNI","events_url":"https://api.github.com/users/GabeNI/events{/privacy}","following_url":"https://api.github.com/users/GabeNI/following{/other_user}","followers_url":"https://api.github.com/users/GabeNI/followers","gists_url":"https://api.github.com/users/GabeNI/gists{/gist_id}","organizations_url":"https://api.github.com/users/GabeNI/orgs","received_events_url":"https://api.github.com/users/GabeNI/received_events","repos_url":"https://api.github.com/users/GabeNI/repos","starred_url":"https://api.github.com/users/GabeNI/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GabeNI/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1173","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1173","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1173","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/c3ca7ca35df8369c7d2da203c96099b7b89e819f","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1173.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1173.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1173/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1173/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1173/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes5wV1jj","merge_commit_sha":"6d0d797c8104ae60d0469e1b4d8472925df3f94a","requested_teams":[{"id":9104021,"node_id":"T_kwDOAF3p4s4AiuqV","name":"CoreOS Buses and WDF","description":"CoreOS Buses and WDF","url":"https://api.github.com/organizations/6154722/team/9104021","slug":"coreos-buses-and-wdf","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/coreos-buses-and-wdf","members_url":"https://api.github.com/organizations/6154722/team/9104021/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9104021/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1173"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1173"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1173"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1173/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1173/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1173/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/c3ca7ca35df8369c7d2da203c96099b7b89e819f"}},"head":{"label":"GabeNI:patch-1","ref":"patch-1","sha":"c3ca7ca35df8369c7d2da203c96099b7b89e819f","repo":{"id":804926108,"node_id":"R_kgDOL_oynA","owner":{"login":"GabeNI","id":75270571,"node_id":"MDQ6VXNlcjc1MjcwNTcx","avatar_url":"https://avatars.githubusercontent.com/u/75270571?v=4","html_url":"https://github.com/GabeNI","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/GabeNI","events_url":"https://api.github.com/users/GabeNI/events{/privacy}","following_url":"https://api.github.com/users/GabeNI/following{/other_user}","followers_url":"https://api.github.com/users/GabeNI/followers","gists_url":"https://api.github.com/users/GabeNI/gists{/gist_id}","organizations_url":"https://api.github.com/users/GabeNI/orgs","received_events_url":"https://api.github.com/users/GabeNI/received_events","repos_url":"https://api.github.com/users/GabeNI/repos","starred_url":"https://api.github.com/users/GabeNI/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GabeNI/subscriptions"},"name":"Windows-driver-samples","full_name":"GabeNI/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2024-05-23T14:37:44Z","pushed_at":"2024-05-23T14:39:31Z","updated_at":"2024-05-23T14:37:44Z","html_url":"https://github.com/GabeNI/Windows-driver-samples","clone_url":"https://github.com/GabeNI/Windows-driver-samples.git","git_url":"git://github.com/GabeNI/Windows-driver-samples.git","ssh_url":"git@github.com:GabeNI/Windows-driver-samples.git","svn_url":"https://github.com/GabeNI/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":164937,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/GabeNI/Windows-driver-samples","archive_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/GabeNI/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"GabeNI","id":75270571,"node_id":"MDQ6VXNlcjc1MjcwNTcx","avatar_url":"https://avatars.githubusercontent.com/u/75270571?v=4","html_url":"https://github.com/GabeNI","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/GabeNI","events_url":"https://api.github.com/users/GabeNI/events{/privacy}","following_url":"https://api.github.com/users/GabeNI/following{/other_user}","followers_url":"https://api.github.com/users/GabeNI/followers","gists_url":"https://api.github.com/users/GabeNI/gists{/gist_id}","organizations_url":"https://api.github.com/users/GabeNI/orgs","received_events_url":"https://api.github.com/users/GabeNI/received_events","repos_url":"https://api.github.com/users/GabeNI/repos","starred_url":"https://api.github.com/users/GabeNI/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GabeNI/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"c19f2e4cffadef34105407da20108ec2f196ac53","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1812861222,"number":1155,"state":"open","locked":false,"title":"Support Occlusion Image in AvsCamera","body":"Add support for 3rd Party Image Occlusion for an example for how to add an Image file to the system","created_at":"2024-04-08T20:28:21Z","updated_at":"2024-05-28T20:04:58Z","user":{"login":"gerritsMSFT","id":55601905,"node_id":"MDQ6VXNlcjU1NjAxOTA1","avatar_url":"https://avatars.githubusercontent.com/u/55601905?v=4","html_url":"https://github.com/gerritsMSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/gerritsMSFT","events_url":"https://api.github.com/users/gerritsMSFT/events{/privacy}","following_url":"https://api.github.com/users/gerritsMSFT/following{/other_user}","followers_url":"https://api.github.com/users/gerritsMSFT/followers","gists_url":"https://api.github.com/users/gerritsMSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/gerritsMSFT/orgs","received_events_url":"https://api.github.com/users/gerritsMSFT/received_events","repos_url":"https://api.github.com/users/gerritsMSFT/repos","starred_url":"https://api.github.com/users/gerritsMSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gerritsMSFT/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1155","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1155","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1155","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ef0d3762faebad5fe1064f401d2c2d749a7d2dd2","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1155.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1155.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1155/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1155/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1155/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5sDhEm","requested_reviewers":[{"login":"kasumman","id":44981820,"node_id":"MDQ6VXNlcjQ0OTgxODIw","avatar_url":"https://avatars.githubusercontent.com/u/44981820?v=4","html_url":"https://github.com/kasumman","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/kasumman","events_url":"https://api.github.com/users/kasumman/events{/privacy}","following_url":"https://api.github.com/users/kasumman/following{/other_user}","followers_url":"https://api.github.com/users/kasumman/followers","gists_url":"https://api.github.com/users/kasumman/gists{/gist_id}","organizations_url":"https://api.github.com/users/kasumman/orgs","received_events_url":"https://api.github.com/users/kasumman/received_events","repos_url":"https://api.github.com/users/kasumman/repos","starred_url":"https://api.github.com/users/kasumman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kasumman/subscriptions"},{"login":"jiteshkris","id":17018559,"node_id":"MDQ6VXNlcjE3MDE4NTU5","avatar_url":"https://avatars.githubusercontent.com/u/17018559?v=4","html_url":"https://github.com/jiteshkris","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jiteshkris","events_url":"https://api.github.com/users/jiteshkris/events{/privacy}","following_url":"https://api.github.com/users/jiteshkris/following{/other_user}","followers_url":"https://api.github.com/users/jiteshkris/followers","gists_url":"https://api.github.com/users/jiteshkris/gists{/gist_id}","organizations_url":"https://api.github.com/users/jiteshkris/orgs","received_events_url":"https://api.github.com/users/jiteshkris/received_events","repos_url":"https://api.github.com/users/jiteshkris/repos","starred_url":"https://api.github.com/users/jiteshkris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jiteshkris/subscriptions"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1155"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1155"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1155"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1155/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1155/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1155/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ef0d3762faebad5fe1064f401d2c2d749a7d2dd2"}},"head":{"label":"gerritsMSFT:patch-4","ref":"patch-4","sha":"ef0d3762faebad5fe1064f401d2c2d749a7d2dd2","repo":{"id":575173747,"node_id":"R_kgDOIkh0cw","owner":{"login":"gerritsMSFT","id":55601905,"node_id":"MDQ6VXNlcjU1NjAxOTA1","avatar_url":"https://avatars.githubusercontent.com/u/55601905?v=4","html_url":"https://github.com/gerritsMSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/gerritsMSFT","events_url":"https://api.github.com/users/gerritsMSFT/events{/privacy}","following_url":"https://api.github.com/users/gerritsMSFT/following{/other_user}","followers_url":"https://api.github.com/users/gerritsMSFT/followers","gists_url":"https://api.github.com/users/gerritsMSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/gerritsMSFT/orgs","received_events_url":"https://api.github.com/users/gerritsMSFT/received_events","repos_url":"https://api.github.com/users/gerritsMSFT/repos","starred_url":"https://api.github.com/users/gerritsMSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gerritsMSFT/subscriptions"},"name":"Windows-driver-samples","full_name":"gerritsMSFT/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2022-12-06T23:15:52Z","pushed_at":"2024-10-24T16:53:54Z","updated_at":"2022-12-06T23:16:38Z","html_url":"https://github.com/gerritsMSFT/Windows-driver-samples","clone_url":"https://github.com/gerritsMSFT/Windows-driver-samples.git","git_url":"git://github.com/gerritsMSFT/Windows-driver-samples.git","ssh_url":"git@github.com:gerritsMSFT/Windows-driver-samples.git","svn_url":"https://github.com/gerritsMSFT/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":1,"watchers_count":1,"watchers":1,"size":164975,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples","archive_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/gerritsMSFT/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"gerritsMSFT","id":55601905,"node_id":"MDQ6VXNlcjU1NjAxOTA1","avatar_url":"https://avatars.githubusercontent.com/u/55601905?v=4","html_url":"https://github.com/gerritsMSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/gerritsMSFT","events_url":"https://api.github.com/users/gerritsMSFT/events{/privacy}","following_url":"https://api.github.com/users/gerritsMSFT/following{/other_user}","followers_url":"https://api.github.com/users/gerritsMSFT/followers","gists_url":"https://api.github.com/users/gerritsMSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/gerritsMSFT/orgs","received_events_url":"https://api.github.com/users/gerritsMSFT/received_events","repos_url":"https://api.github.com/users/gerritsMSFT/repos","starred_url":"https://api.github.com/users/gerritsMSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gerritsMSFT/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"b968cfbed5566a3a9597f5368334beb3b6dad4d2","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1761949738,"number":1138,"state":"open","locked":false,"title":"Add support for ARM64 for network/wlan","created_at":"2024-03-07T21:56:12Z","updated_at":"2024-07-13T05:13:32Z","user":{"login":"NeoAdonis","id":1562728,"node_id":"MDQ6VXNlcjE1NjI3Mjg=","avatar_url":"https://avatars.githubusercontent.com/u/1562728?v=4","html_url":"https://github.com/NeoAdonis","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/NeoAdonis","events_url":"https://api.github.com/users/NeoAdonis/events{/privacy}","following_url":"https://api.github.com/users/NeoAdonis/following{/other_user}","followers_url":"https://api.github.com/users/NeoAdonis/followers","gists_url":"https://api.github.com/users/NeoAdonis/gists{/gist_id}","organizations_url":"https://api.github.com/users/NeoAdonis/orgs","received_events_url":"https://api.github.com/users/NeoAdonis/received_events","repos_url":"https://api.github.com/users/NeoAdonis/repos","starred_url":"https://api.github.com/users/NeoAdonis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/NeoAdonis/subscriptions"},"draft":true,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1138","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1138","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1138","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/bc58af4a85ce728e39954044b8c3f55e7144867d","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1138.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1138.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1138/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1138/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1138/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5pBTgq","merge_commit_sha":"69dd3bdcd6c6f7c84aa4688bf0817c0520d927aa","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1138"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1138"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1138"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1138/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1138/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1138/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/bc58af4a85ce728e39954044b8c3f55e7144867d"}},"head":{"label":"microsoft:user/seromero/network-wlan-arm64","ref":"user/seromero/network-wlan-arm64","sha":"bc58af4a85ce728e39954044b8c3f55e7144867d","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"1803c6f213fd986b503ec0b9ac272d60fc4fb1f5","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1757917771,"number":1137,"state":"open","locked":false,"title":"Draft of moving to NuGet PackageReference instead of packages.config","body":"Looks to work for all samples except network/ndis/filter","created_at":"2024-03-06T00:15:13Z","updated_at":"2024-06-28T18:39:36Z","user":{"login":"JakobL-MSFT","id":110699333,"node_id":"U_kgDOBpkjRQ","avatar_url":"https://avatars.githubusercontent.com/u/110699333?v=4","html_url":"https://github.com/JakobL-MSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JakobL-MSFT","events_url":"https://api.github.com/users/JakobL-MSFT/events{/privacy}","following_url":"https://api.github.com/users/JakobL-MSFT/following{/other_user}","followers_url":"https://api.github.com/users/JakobL-MSFT/followers","gists_url":"https://api.github.com/users/JakobL-MSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/JakobL-MSFT/orgs","received_events_url":"https://api.github.com/users/JakobL-MSFT/received_events","repos_url":"https://api.github.com/users/JakobL-MSFT/repos","starred_url":"https://api.github.com/users/JakobL-MSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JakobL-MSFT/subscriptions"},"draft":true,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1137","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1137","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1137","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/1971c7bfc27f90764155ef96df64db4b4cfb93df","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1137.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1137.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1137/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1137/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1137/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5ox7JL","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1137"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1137"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1137"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1137/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1137/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1137/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/1971c7bfc27f90764155ef96df64db4b4cfb93df"}},"head":{"label":"microsoft:user/jakobl/nuget_packagereference_instead_of_packages_config","ref":"user/jakobl/nuget_packagereference_instead_of_packages_config","sha":"1971c7bfc27f90764155ef96df64db4b4cfb93df","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"b3af8c8f9bd508f54075da2f2516b31d05cd52c8","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1733860574,"number":1121,"state":"open","locked":false,"title":"Draft - not to be completed - arm64 remaining samples and script","created_at":"2024-02-20T03:17:53Z","updated_at":"2024-05-22T16:08:16Z","user":{"login":"JakobL-MSFT","id":110699333,"node_id":"U_kgDOBpkjRQ","avatar_url":"https://avatars.githubusercontent.com/u/110699333?v=4","html_url":"https://github.com/JakobL-MSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JakobL-MSFT","events_url":"https://api.github.com/users/JakobL-MSFT/events{/privacy}","following_url":"https://api.github.com/users/JakobL-MSFT/following{/other_user}","followers_url":"https://api.github.com/users/JakobL-MSFT/followers","gists_url":"https://api.github.com/users/JakobL-MSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/JakobL-MSFT/orgs","received_events_url":"https://api.github.com/users/JakobL-MSFT/received_events","repos_url":"https://api.github.com/users/JakobL-MSFT/repos","starred_url":"https://api.github.com/users/JakobL-MSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JakobL-MSFT/subscriptions"},"draft":true,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1121","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1121","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1121","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/2b392296cea38a6a6be01eb51cb8aaf9abf0e594","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1121.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1121.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1121/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1121/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1121/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5nWJze","requested_teams":[{"id":8638939,"node_id":"T_kwDOAF3p4s4Ag9Hb","name":"Storage Core","description":"Storage Core team within CoreOS SFS (Storage and File Systems) responsible for drivers for storage hardware","url":"https://api.github.com/organizations/6154722/team/8638939","slug":"storage-core","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/storage-core","members_url":"https://api.github.com/organizations/6154722/team/8638939/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8638939/repos"},{"id":8754645,"node_id":"T_kwDOAF3p4s4AhZXV","name":"Platform Integrity","description":"Platform Integrity Team","url":"https://api.github.com/organizations/6154722/team/8754645","slug":"platform-integrity","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/platform-integrity","members_url":"https://api.github.com/organizations/6154722/team/8754645/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8754645/repos"},{"id":8962301,"node_id":"T_kwDOAF3p4s4AiMD9","name":"NetSec","description":"Network Security","url":"https://api.github.com/organizations/6154722/team/8962301","slug":"netsec","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/netsec","members_url":"https://api.github.com/organizations/6154722/team/8962301/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8962301/repos"},{"id":9016786,"node_id":"T_kwDOAF3p4s4AiZXS","name":"Consumer Storage","description":"Consumer Storage","url":"https://api.github.com/organizations/6154722/team/9016786","slug":"consumer-storage","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/consumer-storage","members_url":"https://api.github.com/organizations/6154722/team/9016786/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9016786/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1121"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1121"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1121"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1121/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1121/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1121/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/2b392296cea38a6a6be01eb51cb8aaf9abf0e594"}},"head":{"label":"microsoft:script-and-remains-of-script","ref":"script-and-remains-of-script","sha":"2b392296cea38a6a6be01eb51cb8aaf9abf0e594","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"1803c6f213fd986b503ec0b9ac272d60fc4fb1f5","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1730023600,"number":1116,"state":"open","locked":false,"title":"Pchahar/pc load letter6","body":"Add explicit flag for arm64 for ehsc and remove incremental link as ehsc is not passsed for ARM64 VS and looks like ltcg is not supported as well.","created_at":"2024-02-16T18:22:06Z","updated_at":"2024-02-16T19:31:22Z","user":{"login":"prashantchahar","id":19215720,"node_id":"MDQ6VXNlcjE5MjE1NzIw","avatar_url":"https://avatars.githubusercontent.com/u/19215720?v=4","html_url":"https://github.com/prashantchahar","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/prashantchahar","events_url":"https://api.github.com/users/prashantchahar/events{/privacy}","following_url":"https://api.github.com/users/prashantchahar/following{/other_user}","followers_url":"https://api.github.com/users/prashantchahar/followers","gists_url":"https://api.github.com/users/prashantchahar/gists{/gist_id}","organizations_url":"https://api.github.com/users/prashantchahar/orgs","received_events_url":"https://api.github.com/users/prashantchahar/received_events","repos_url":"https://api.github.com/users/prashantchahar/repos","starred_url":"https://api.github.com/users/prashantchahar/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/prashantchahar/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1116","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1116","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1116","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/4b16f65288cb1b529eb300d5afec608c7b446bfd","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1116.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1116.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1116/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1116/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1116/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5nHhCw","requested_teams":[{"id":8472360,"node_id":"T_kwDOAF3p4s4AgUco","name":"Driver Samples Maintainers","description":"Maintainers for the Windows Driver Samples repository","url":"https://api.github.com/organizations/6154722/team/8472360","slug":"driver-samples-maintainers","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/driver-samples-maintainers","members_url":"https://api.github.com/organizations/6154722/team/8472360/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8472360/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1116"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1116"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1116"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1116/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1116/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1116/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/4b16f65288cb1b529eb300d5afec608c7b446bfd"}},"head":{"label":"microsoft:pchahar/pc_load_letter6","ref":"pchahar/pc_load_letter6","sha":"4b16f65288cb1b529eb300d5afec608c7b446bfd","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"dcf6265102838bdd29899037a6fc630ae455f80d","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1727384420,"number":1114,"state":"open","locked":false,"title":"moufiltr: Mirror mouse movement","body":"Make the driver more interesting by mirroring mouse events, so that left movement becomes right, up movement becomes down, and so on.\n\nUsing `MOUSE_MOVE_ABSOLUTE`(1) with negation instead of `MOUSE_MOVE_RELATIVE`(0) to allow bitmask operations.\n","created_at":"2024-02-15T10:55:15Z","updated_at":"2025-10-09T19:45:30Z","user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1114","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1114","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1114","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/9e433497a2a85556d668daccf8a9c994ee39700a","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1114.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1114.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1114/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1114/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1114/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5m9ctk","merge_commit_sha":"170f1620c4da1f53c7411f16985487b63220bb23","requested_teams":[{"id":9104021,"node_id":"T_kwDOAF3p4s4AiuqV","name":"CoreOS Buses and WDF","description":"CoreOS Buses and WDF","url":"https://api.github.com/organizations/6154722/team/9104021","slug":"coreos-buses-and-wdf","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/coreos-buses-and-wdf","members_url":"https://api.github.com/organizations/6154722/team/9104021/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9104021/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1114"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1114"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1114"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1114/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1114/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1114/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/9e433497a2a85556d668daccf8a9c994ee39700a"}},"head":{"label":"forderud:mouse-mirror","ref":"mouse-mirror","sha":"9e433497a2a85556d668daccf8a9c994ee39700a","repo":{"id":653562182,"node_id":"R_kgDOJvSRRg","owner":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"name":"Windows-driver-samples","full_name":"forderud/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2023-06-14T09:38:53Z","pushed_at":"2025-10-09T19:47:53Z","updated_at":"2024-08-21T10:22:33Z","html_url":"https://github.com/forderud/Windows-driver-samples","clone_url":"https://github.com/forderud/Windows-driver-samples.git","git_url":"git://github.com/forderud/Windows-driver-samples.git","ssh_url":"git@github.com:forderud/Windows-driver-samples.git","svn_url":"https://github.com/forderud/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165789,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/forderud/Windows-driver-samples","archive_url":"https://api.github.com/repos/forderud/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/forderud/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/forderud/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/forderud/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/forderud/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/forderud/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/forderud/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/forderud/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/forderud/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/forderud/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/forderud/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/forderud/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/forderud/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/forderud/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/forderud/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"ed3dbe56378117a15105099870f2397671ad99ab","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1726728522,"number":1113,"state":"open","locked":false,"title":"Build: Do not set target version","created_at":"2024-02-15T01:54:18Z","updated_at":"2024-06-28T18:45:56Z","user":{"login":"JakobL-MSFT","id":110699333,"node_id":"U_kgDOBpkjRQ","avatar_url":"https://avatars.githubusercontent.com/u/110699333?v=4","html_url":"https://github.com/JakobL-MSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JakobL-MSFT","events_url":"https://api.github.com/users/JakobL-MSFT/events{/privacy}","following_url":"https://api.github.com/users/JakobL-MSFT/following{/other_user}","followers_url":"https://api.github.com/users/JakobL-MSFT/followers","gists_url":"https://api.github.com/users/JakobL-MSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/JakobL-MSFT/orgs","received_events_url":"https://api.github.com/users/JakobL-MSFT/received_events","repos_url":"https://api.github.com/users/JakobL-MSFT/repos","starred_url":"https://api.github.com/users/JakobL-MSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JakobL-MSFT/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1113","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1113","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1113","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/bfb5cf0ba9ea78233b92a8d60c66626a5f2fcc14","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1113.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1113.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1113/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1113/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1113/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5m68lK","requested_teams":[{"id":8472360,"node_id":"T_kwDOAF3p4s4AgUco","name":"Driver Samples Maintainers","description":"Maintainers for the Windows Driver Samples repository","url":"https://api.github.com/organizations/6154722/team/8472360","slug":"driver-samples-maintainers","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/driver-samples-maintainers","members_url":"https://api.github.com/organizations/6154722/team/8472360/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8472360/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1113"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1113"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1113"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1113/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1113/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1113/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/bfb5cf0ba9ea78233b92a8d60c66626a5f2fcc14"}},"head":{"label":"microsoft:user/jakobl/do_not_set_TargetVersion","ref":"user/jakobl/do_not_set_TargetVersion","sha":"bfb5cf0ba9ea78233b92a8d60c66626a5f2fcc14","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"b3af8c8f9bd508f54075da2f2516b31d05cd52c8","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1726438424,"number":1112,"state":"open","locked":false,"title":"Add templates","created_at":"2024-02-14T20:37:15Z","updated_at":"2024-06-28T18:43:10Z","user":{"login":"JakobL-MSFT","id":110699333,"node_id":"U_kgDOBpkjRQ","avatar_url":"https://avatars.githubusercontent.com/u/110699333?v=4","html_url":"https://github.com/JakobL-MSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JakobL-MSFT","events_url":"https://api.github.com/users/JakobL-MSFT/events{/privacy}","following_url":"https://api.github.com/users/JakobL-MSFT/following{/other_user}","followers_url":"https://api.github.com/users/JakobL-MSFT/followers","gists_url":"https://api.github.com/users/JakobL-MSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/JakobL-MSFT/orgs","received_events_url":"https://api.github.com/users/JakobL-MSFT/received_events","repos_url":"https://api.github.com/users/JakobL-MSFT/repos","starred_url":"https://api.github.com/users/JakobL-MSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JakobL-MSFT/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1112","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1112","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1112","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/341564fbc34d7521d03da4e91a0d4c2be9656410","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1112.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1112.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1112/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1112/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1112/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5m51wY","requested_teams":[{"id":8472360,"node_id":"T_kwDOAF3p4s4AgUco","name":"Driver Samples Maintainers","description":"Maintainers for the Windows Driver Samples repository","url":"https://api.github.com/organizations/6154722/team/8472360","slug":"driver-samples-maintainers","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/driver-samples-maintainers","members_url":"https://api.github.com/organizations/6154722/team/8472360/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8472360/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1112"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1112"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1112"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1112/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1112/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1112/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/341564fbc34d7521d03da4e91a0d4c2be9656410"}},"head":{"label":"microsoft:user/jakobl/add_templates","ref":"user/jakobl/add_templates","sha":"341564fbc34d7521d03da4e91a0d4c2be9656410","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"b3af8c8f9bd508f54075da2f2516b31d05cd52c8","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1500852266,"number":1028,"state":"open","locked":false,"title":"[Toaster] Update notify, toast & Enum project GUID references","body":"Follow-up to 96eb96dfb613e4c745db6bd1f53a92fe7e2290fc that changed `` in the projects. Auto-update solution to use the correct GUID as found in the corresponding vcxproj files. The changes are automatically performed by Visual Studio when saving the solution.","created_at":"2023-09-04T08:28:30Z","updated_at":"2025-10-09T19:44:39Z","user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1028","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1028","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1028","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/81d8f5d44882a21266cf92df7d81e292e51a883a","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1028.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1028.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1028/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1028/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1028/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5ZdTAq","merge_commit_sha":"516960a1e0b9e9d0ed8350db6ec50abaaf9fa2b2","requested_teams":[{"id":8472360,"node_id":"T_kwDOAF3p4s4AgUco","name":"Driver Samples Maintainers","description":"Maintainers for the Windows Driver Samples repository","url":"https://api.github.com/organizations/6154722/team/8472360","slug":"driver-samples-maintainers","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/driver-samples-maintainers","members_url":"https://api.github.com/organizations/6154722/team/8472360/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8472360/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1028"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1028"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1028"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1028/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1028/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1028/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/81d8f5d44882a21266cf92df7d81e292e51a883a"}},"head":{"label":"forderud:sln-upd","ref":"sln-upd","sha":"81d8f5d44882a21266cf92df7d81e292e51a883a","repo":{"id":653562182,"node_id":"R_kgDOJvSRRg","owner":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"name":"Windows-driver-samples","full_name":"forderud/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2023-06-14T09:38:53Z","pushed_at":"2025-10-09T19:47:53Z","updated_at":"2024-08-21T10:22:33Z","html_url":"https://github.com/forderud/Windows-driver-samples","clone_url":"https://github.com/forderud/Windows-driver-samples.git","git_url":"git://github.com/forderud/Windows-driver-samples.git","ssh_url":"git@github.com:forderud/Windows-driver-samples.git","svn_url":"https://github.com/forderud/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165789,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/forderud/Windows-driver-samples","archive_url":"https://api.github.com/repos/forderud/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/forderud/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/forderud/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/forderud/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/forderud/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/forderud/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/forderud/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/forderud/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/forderud/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/forderud/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/forderud/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/forderud/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/forderud/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/forderud/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/forderud/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"ed3dbe56378117a15105099870f2397671ad99ab","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1500363578,"number":1026,"state":"open","locked":false,"title":"Remove UMDF references from toastDrv readme","body":"Remove the misspelled "UDMF1" reference, since all UMDF projects were removed in #830. All remaining drivers in this solution are now KMDF-based.\n\nAlso, rename the misspelled "KDMF" acronym to "KMDF".","created_at":"2023-09-03T19:42:41Z","updated_at":"2025-10-09T19:44:05Z","user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1026","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1026","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1026","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/40e78bf7435628a1439628925561d16a5ddb0c61","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1026.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1026.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1026/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1026/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1026/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5Zbbs6","merge_commit_sha":"f809b253cb59f8001378fba87c9e8661b74716fa","requested_teams":[{"id":8472360,"node_id":"T_kwDOAF3p4s4AgUco","name":"Driver Samples Maintainers","description":"Maintainers for the Windows Driver Samples repository","url":"https://api.github.com/organizations/6154722/team/8472360","slug":"driver-samples-maintainers","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/driver-samples-maintainers","members_url":"https://api.github.com/organizations/6154722/team/8472360/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8472360/repos"},{"id":9104021,"node_id":"T_kwDOAF3p4s4AiuqV","name":"CoreOS Buses and WDF","description":"CoreOS Buses and WDF","url":"https://api.github.com/organizations/6154722/team/9104021","slug":"coreos-buses-and-wdf","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/coreos-buses-and-wdf","members_url":"https://api.github.com/organizations/6154722/team/9104021/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9104021/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1026"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1026"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1026"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1026/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1026/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1026/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/40e78bf7435628a1439628925561d16a5ddb0c61"}},"head":{"label":"forderud:toastDrv-readme-upd","ref":"toastDrv-readme-upd","sha":"40e78bf7435628a1439628925561d16a5ddb0c61","repo":{"id":653562182,"node_id":"R_kgDOJvSRRg","owner":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"name":"Windows-driver-samples","full_name":"forderud/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2023-06-14T09:38:53Z","pushed_at":"2025-10-09T19:47:53Z","updated_at":"2024-08-21T10:22:33Z","html_url":"https://github.com/forderud/Windows-driver-samples","clone_url":"https://github.com/forderud/Windows-driver-samples.git","git_url":"git://github.com/forderud/Windows-driver-samples.git","ssh_url":"git@github.com:forderud/Windows-driver-samples.git","svn_url":"https://github.com/forderud/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165789,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/forderud/Windows-driver-samples","archive_url":"https://api.github.com/repos/forderud/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/forderud/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/forderud/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/forderud/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/forderud/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/forderud/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/forderud/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/forderud/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/forderud/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/forderud/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/forderud/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/forderud/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/forderud/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/forderud/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/forderud/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"ed3dbe56378117a15105099870f2397671ad99ab","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1481588577,"number":1020,"state":"open","locked":false,"title":"KMDOD: Correctly copy the DXGKRNL_INTERFACE structure","body":"During its DxgkDdiStartDevice routine, the KMDOD driver is provided with an DXGKRNL_INTERFACE structure containing mostly pointers to various WDDM interface functions that it my need to use. The driver copies this structure to its device-specific block of memory. However, the driver expected the system would provide the same version of the structure it uses, however, this is not necessarily true. Such behavior resulted in copying memory past the end of the system-provided structure which triggered the crash.\n\nFixed version of the driver copies only bytes really occupied by the DXGKRNL_INTERFACE structure (stored in its Size member).\n\nThis is a port of [PR 967 from kvm-guest-drivers-windows](https://github.com/virtio-win/kvm-guest-drivers-windows/pull/967).","created_at":"2023-08-19T21:15:13Z","updated_at":"2023-08-19T21:28:27Z","user":{"login":"MartinDrab","id":14164315,"node_id":"MDQ6VXNlcjE0MTY0MzE1","avatar_url":"https://avatars.githubusercontent.com/u/14164315?v=4","html_url":"https://github.com/MartinDrab","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/MartinDrab","events_url":"https://api.github.com/users/MartinDrab/events{/privacy}","following_url":"https://api.github.com/users/MartinDrab/following{/other_user}","followers_url":"https://api.github.com/users/MartinDrab/followers","gists_url":"https://api.github.com/users/MartinDrab/gists{/gist_id}","organizations_url":"https://api.github.com/users/MartinDrab/orgs","received_events_url":"https://api.github.com/users/MartinDrab/received_events","repos_url":"https://api.github.com/users/MartinDrab/repos","starred_url":"https://api.github.com/users/MartinDrab/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MartinDrab/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1020","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1020","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1020","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/d778047bb75ff9888cd4ecbfc484e23066acd766","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1020.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1020.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1020/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1020/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1020/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes5YTz9h","merge_commit_sha":"5ce4a742486bcad85c4418b6c71c12c26221d94d","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1020"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1020"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1020"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1020/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1020/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1020/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/d778047bb75ff9888cd4ecbfc484e23066acd766"}},"head":{"label":"MartinDrab:kmdod/wrong-interface-size","ref":"kmdod/wrong-interface-size","sha":"d778047bb75ff9888cd4ecbfc484e23066acd766","repo":{"id":680617654,"node_id":"R_kgDOKJFmtg","owner":{"login":"MartinDrab","id":14164315,"node_id":"MDQ6VXNlcjE0MTY0MzE1","avatar_url":"https://avatars.githubusercontent.com/u/14164315?v=4","html_url":"https://github.com/MartinDrab","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/MartinDrab","events_url":"https://api.github.com/users/MartinDrab/events{/privacy}","following_url":"https://api.github.com/users/MartinDrab/following{/other_user}","followers_url":"https://api.github.com/users/MartinDrab/followers","gists_url":"https://api.github.com/users/MartinDrab/gists{/gist_id}","organizations_url":"https://api.github.com/users/MartinDrab/orgs","received_events_url":"https://api.github.com/users/MartinDrab/received_events","repos_url":"https://api.github.com/users/MartinDrab/repos","starred_url":"https://api.github.com/users/MartinDrab/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MartinDrab/subscriptions"},"name":"Windows-driver-samples","full_name":"MartinDrab/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2023-08-19T20:31:07Z","pushed_at":"2024-03-28T18:43:54Z","updated_at":"2024-03-28T18:41:32Z","html_url":"https://github.com/MartinDrab/Windows-driver-samples","clone_url":"https://github.com/MartinDrab/Windows-driver-samples.git","git_url":"git://github.com/MartinDrab/Windows-driver-samples.git","ssh_url":"git@github.com:MartinDrab/Windows-driver-samples.git","svn_url":"https://github.com/MartinDrab/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":164739,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples","archive_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/MartinDrab/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"MartinDrab","id":14164315,"node_id":"MDQ6VXNlcjE0MTY0MzE1","avatar_url":"https://avatars.githubusercontent.com/u/14164315?v=4","html_url":"https://github.com/MartinDrab","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/MartinDrab","events_url":"https://api.github.com/users/MartinDrab/events{/privacy}","following_url":"https://api.github.com/users/MartinDrab/following{/other_user}","followers_url":"https://api.github.com/users/MartinDrab/followers","gists_url":"https://api.github.com/users/MartinDrab/gists{/gist_id}","organizations_url":"https://api.github.com/users/MartinDrab/orgs","received_events_url":"https://api.github.com/users/MartinDrab/received_events","repos_url":"https://api.github.com/users/MartinDrab/repos","starred_url":"https://api.github.com/users/MartinDrab/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MartinDrab/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"b999d84d456525d283441aed977dacac33f88c38","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1436086527,"number":1007,"state":"open","locked":false,"title":"Firefly: Configure Inf2CatUseLocalTime to fix build failure right after midnight","body":"Done to fix the following error when building between midnight and 2AM on a computer configured in the GMT+2 time-zone:\n`>22.9.7: DriverVer set to a date in the future (postdated DriverVer not allowed) in firefly\\firefly.inf.`\n\nProblem description: https://learn.microsoft.com/en-us/windows-hardware/drivers/devtest/inf2cat#troubleshooting . The [SDIO](https://github.com/microsoft/Windows-driver-samples/blob/main/network/wlan/WDI/PLATFORM/NDIS6/SDIO/sdio.vcxproj) sample is already with the same Inf2CatUseLocalTime parameter, so the pattern is not new to this repo.","created_at":"2023-07-15T22:07:12Z","updated_at":"2025-10-09T19:43:31Z","user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1007","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/1007","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1007","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/225789960de0863667748e5eef0b9bca9e185c6b","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/1007.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/1007.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1007/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1007/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1007/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5VmPD_","merge_commit_sha":"254af77bd171e5509394d5c8f892def8dc0fe030","requested_teams":[{"id":8472360,"node_id":"T_kwDOAF3p4s4AgUco","name":"Driver Samples Maintainers","description":"Maintainers for the Windows Driver Samples repository","url":"https://api.github.com/organizations/6154722/team/8472360","slug":"driver-samples-maintainers","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/driver-samples-maintainers","members_url":"https://api.github.com/organizations/6154722/team/8472360/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8472360/repos"},{"id":9104021,"node_id":"T_kwDOAF3p4s4AiuqV","name":"CoreOS Buses and WDF","description":"CoreOS Buses and WDF","url":"https://api.github.com/organizations/6154722/team/9104021","slug":"coreos-buses-and-wdf","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/coreos-buses-and-wdf","members_url":"https://api.github.com/organizations/6154722/team/9104021/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9104021/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1007"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/1007"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1007"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/1007/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1007/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/1007/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/225789960de0863667748e5eef0b9bca9e185c6b"}},"head":{"label":"forderud:Inf2Cat-localtime","ref":"Inf2Cat-localtime","sha":"225789960de0863667748e5eef0b9bca9e185c6b","repo":{"id":653562182,"node_id":"R_kgDOJvSRRg","owner":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"name":"Windows-driver-samples","full_name":"forderud/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2023-06-14T09:38:53Z","pushed_at":"2025-10-09T19:47:53Z","updated_at":"2024-08-21T10:22:33Z","html_url":"https://github.com/forderud/Windows-driver-samples","clone_url":"https://github.com/forderud/Windows-driver-samples.git","git_url":"git://github.com/forderud/Windows-driver-samples.git","ssh_url":"git@github.com:forderud/Windows-driver-samples.git","svn_url":"https://github.com/forderud/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165789,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/forderud/Windows-driver-samples","archive_url":"https://api.github.com/repos/forderud/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/forderud/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/forderud/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/forderud/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/forderud/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/forderud/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/forderud/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/forderud/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/forderud/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/forderud/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/forderud/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/forderud/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/forderud/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/forderud/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/forderud/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"ed3dbe56378117a15105099870f2397671ad99ab","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1397244776,"number":999,"state":"open","locked":false,"title":"nullFilter: VS2022 compatibility and best practices by default","body":"I have been building Minifilter driver lately and was supriced how much issues there are on existing samples and challenges which developers have faced because of it (there is multiple issues because of it in here and other forums).\n\nThis PR updates nullFilter sample in way that:\n* It can be build with Visual Studio 2022 and it as result there is zero warnings.\n* Removed deprecated Win32 support which is not compatible with VS2022.\n* INF uses latest standard but still include legacy compatibility for those who needs that.\n* Latest C and C++ standards are followed.\n* Code analysis runs with "Microsoft All Rules" on every build as highly recommended in [here](https://www.osr.com/blog/2022/10/24/it-passes-code-analysis/)\n* [Remote deployment](https://learn.microsoft.com/en-us/windows-hardware/drivers/gettingstarted/writing-a-very-small-kmdf--driver#deploy-the-driver) can be used.\n* Driver verification is on with all rules enabled in on like highly recommended in [here](https://www.osr.com/nt-insider/2015-issue1/kmdf-umdf-hints/)\n* BypassIO support is enabled in INF file as instructed in [here](https://learn.microsoft.com/en-us/windows-hardware/drivers/ifs/bypassio#update-your-inf-or-manifest-files)\n* `ntstrsafe.h` is used instead of `dontuse.h`. This driver actually don't need that at all but as this is sample it is good idea to share correct way on it.\n* It attach automatically to all volumes automatically so it can be used with HLK tests.\n\nIn addition that this provides better starting point for developers, I did find it also useful to verify that my HLK Client machines are working correctly as cases like [File IO 2 Tests](https://learn.microsoft.com/en-us/windows-hardware/test/hlk/testref/a1fb1fda-1fc1-41de-9626-bf88defeb746) needs very special configuration.","created_at":"2023-06-18T18:57:20Z","updated_at":"2023-06-18T18:57:20Z","user":{"login":"olljanat","id":6213926,"node_id":"MDQ6VXNlcjYyMTM5MjY=","avatar_url":"https://avatars.githubusercontent.com/u/6213926?v=4","html_url":"https://github.com/olljanat","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/olljanat","events_url":"https://api.github.com/users/olljanat/events{/privacy}","following_url":"https://api.github.com/users/olljanat/following{/other_user}","followers_url":"https://api.github.com/users/olljanat/followers","gists_url":"https://api.github.com/users/olljanat/gists{/gist_id}","organizations_url":"https://api.github.com/users/olljanat/orgs","received_events_url":"https://api.github.com/users/olljanat/received_events","repos_url":"https://api.github.com/users/olljanat/repos","starred_url":"https://api.github.com/users/olljanat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/olljanat/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/999","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/999","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/999","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/f646e8f64b81ab74ea9eb304683015326c495aeb","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/999.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/999.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/999/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/999/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/999/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes5TSENo","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/999"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/999"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/999"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/999/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/999/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/999/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/f646e8f64b81ab74ea9eb304683015326c495aeb"}},"head":{"label":"olljanat:nullfilter-vs2022+best-pratices","ref":"nullfilter-vs2022+best-pratices","sha":"f646e8f64b81ab74ea9eb304683015326c495aeb","repo":{"id":654428687,"node_id":"R_kgDOJwHKDw","owner":{"login":"olljanat","id":6213926,"node_id":"MDQ6VXNlcjYyMTM5MjY=","avatar_url":"https://avatars.githubusercontent.com/u/6213926?v=4","html_url":"https://github.com/olljanat","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/olljanat","events_url":"https://api.github.com/users/olljanat/events{/privacy}","following_url":"https://api.github.com/users/olljanat/following{/other_user}","followers_url":"https://api.github.com/users/olljanat/followers","gists_url":"https://api.github.com/users/olljanat/gists{/gist_id}","organizations_url":"https://api.github.com/users/olljanat/orgs","received_events_url":"https://api.github.com/users/olljanat/received_events","repos_url":"https://api.github.com/users/olljanat/repos","starred_url":"https://api.github.com/users/olljanat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/olljanat/subscriptions"},"name":"Windows-driver-samples","full_name":"olljanat/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2023-06-16T05:39:04Z","pushed_at":"2023-06-17T17:53:34Z","updated_at":"2023-06-16T05:39:04Z","html_url":"https://github.com/olljanat/Windows-driver-samples","clone_url":"https://github.com/olljanat/Windows-driver-samples.git","git_url":"git://github.com/olljanat/Windows-driver-samples.git","ssh_url":"git@github.com:olljanat/Windows-driver-samples.git","svn_url":"https://github.com/olljanat/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":163695,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/olljanat/Windows-driver-samples","archive_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/olljanat/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"olljanat","id":6213926,"node_id":"MDQ6VXNlcjYyMTM5MjY=","avatar_url":"https://avatars.githubusercontent.com/u/6213926?v=4","html_url":"https://github.com/olljanat","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/olljanat","events_url":"https://api.github.com/users/olljanat/events{/privacy}","following_url":"https://api.github.com/users/olljanat/following{/other_user}","followers_url":"https://api.github.com/users/olljanat/followers","gists_url":"https://api.github.com/users/olljanat/gists{/gist_id}","organizations_url":"https://api.github.com/users/olljanat/orgs","received_events_url":"https://api.github.com/users/olljanat/received_events","repos_url":"https://api.github.com/users/olljanat/repos","starred_url":"https://api.github.com/users/olljanat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/olljanat/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"f5fe952f1fc90cfcff535407d56f49953d22e8da","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1393606940,"number":997,"state":"open","locked":false,"title":"Modernize flicker app sources","body":"Changes:\n* Postpone variable definitions until first use.\n* Replace `new` with `std::make_unique` for automatic memory mgmt.","created_at":"2023-06-15T07:46:54Z","updated_at":"2025-10-09T19:46:51Z","user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/997","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/997","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/997","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/bd24ac323e943c658a5759faa608078ffd6170d4","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/997.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/997.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/997/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/997/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/997/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5TEMEc","merge_commit_sha":"756127915e6239425ea827b15e3b7f6c23cbc553","requested_teams":[{"id":8472360,"node_id":"T_kwDOAF3p4s4AgUco","name":"Driver Samples Maintainers","description":"Maintainers for the Windows Driver Samples repository","url":"https://api.github.com/organizations/6154722/team/8472360","slug":"driver-samples-maintainers","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/driver-samples-maintainers","members_url":"https://api.github.com/organizations/6154722/team/8472360/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8472360/repos"},{"id":9104021,"node_id":"T_kwDOAF3p4s4AiuqV","name":"CoreOS Buses and WDF","description":"CoreOS Buses and WDF","url":"https://api.github.com/organizations/6154722/team/9104021","slug":"coreos-buses-and-wdf","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/coreos-buses-and-wdf","members_url":"https://api.github.com/organizations/6154722/team/9104021/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9104021/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/997"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/997"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/997"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/997/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/997/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/997/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/bd24ac323e943c658a5759faa608078ffd6170d4"}},"head":{"label":"forderud:Flicker-modernize","ref":"Flicker-modernize","sha":"bd24ac323e943c658a5759faa608078ffd6170d4","repo":{"id":653562182,"node_id":"R_kgDOJvSRRg","owner":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"name":"Windows-driver-samples","full_name":"forderud/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2023-06-14T09:38:53Z","pushed_at":"2025-10-09T19:47:53Z","updated_at":"2024-08-21T10:22:33Z","html_url":"https://github.com/forderud/Windows-driver-samples","clone_url":"https://github.com/forderud/Windows-driver-samples.git","git_url":"git://github.com/forderud/Windows-driver-samples.git","ssh_url":"git@github.com:forderud/Windows-driver-samples.git","svn_url":"https://github.com/forderud/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165789,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/forderud/Windows-driver-samples","archive_url":"https://api.github.com/repos/forderud/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/forderud/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/forderud/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/forderud/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/forderud/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/forderud/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/forderud/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/forderud/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/forderud/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/forderud/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/forderud/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/forderud/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/forderud/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/forderud/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/forderud/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"ed3dbe56378117a15105099870f2397671ad99ab","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1392087214,"number":995,"state":"open","locked":false,"title":"Firefly driver: Postpone variable definitions until first use","body":"Motivation:\n* Improves readability and maintainability.\n* Have been supported since C99.\n* _Can_ potentially reduce stack size usage when variable usage is confined to a local scope. Example: `usage` and `usageLength` variables in hid/firefly/driver/vfeature.c. The compiler is probably already optimizing this though.\n\nDownside:\n* It's a bit more cumbersome to manually determine the stack size of a function when all local variables are no longer listed together. However, tools can still do this effectively.","created_at":"2023-06-14T10:10:00Z","updated_at":"2025-10-09T19:46:10Z","user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/995","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/995","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/995","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ab7b48808f3c12f8c2ed2ca5799701a8e769c88c","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/995.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/995.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/995/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/995/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/995/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5S-ZCu","merge_commit_sha":"fee28943409eaebbc73f4d4ae2fc2935a67f35ad","requested_teams":[{"id":8472360,"node_id":"T_kwDOAF3p4s4AgUco","name":"Driver Samples Maintainers","description":"Maintainers for the Windows Driver Samples repository","url":"https://api.github.com/organizations/6154722/team/8472360","slug":"driver-samples-maintainers","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/driver-samples-maintainers","members_url":"https://api.github.com/organizations/6154722/team/8472360/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8472360/repos"},{"id":9104021,"node_id":"T_kwDOAF3p4s4AiuqV","name":"CoreOS Buses and WDF","description":"CoreOS Buses and WDF","url":"https://api.github.com/organizations/6154722/team/9104021","slug":"coreos-buses-and-wdf","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/coreos-buses-and-wdf","members_url":"https://api.github.com/organizations/6154722/team/9104021/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9104021/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/995"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/995"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/995"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/995/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/995/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/995/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ab7b48808f3c12f8c2ed2ca5799701a8e769c88c"}},"head":{"label":"forderud:postpone-variable","ref":"postpone-variable","sha":"ab7b48808f3c12f8c2ed2ca5799701a8e769c88c","repo":{"id":653562182,"node_id":"R_kgDOJvSRRg","owner":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"},"name":"Windows-driver-samples","full_name":"forderud/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2023-06-14T09:38:53Z","pushed_at":"2025-10-09T19:47:53Z","updated_at":"2024-08-21T10:22:33Z","html_url":"https://github.com/forderud/Windows-driver-samples","clone_url":"https://github.com/forderud/Windows-driver-samples.git","git_url":"git://github.com/forderud/Windows-driver-samples.git","ssh_url":"git@github.com:forderud/Windows-driver-samples.git","svn_url":"https://github.com/forderud/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165789,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/forderud/Windows-driver-samples","archive_url":"https://api.github.com/repos/forderud/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/forderud/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/forderud/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/forderud/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/forderud/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/forderud/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/forderud/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/forderud/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/forderud/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/forderud/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/forderud/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/forderud/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/forderud/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/forderud/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/forderud/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/forderud/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/forderud/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/forderud/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/forderud/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/forderud/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/forderud/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/forderud/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"forderud","id":2671400,"node_id":"MDQ6VXNlcjI2NzE0MDA=","avatar_url":"https://avatars.githubusercontent.com/u/2671400?v=4","html_url":"https://github.com/forderud","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/forderud","events_url":"https://api.github.com/users/forderud/events{/privacy}","following_url":"https://api.github.com/users/forderud/following{/other_user}","followers_url":"https://api.github.com/users/forderud/followers","gists_url":"https://api.github.com/users/forderud/gists{/gist_id}","organizations_url":"https://api.github.com/users/forderud/orgs","received_events_url":"https://api.github.com/users/forderud/received_events","repos_url":"https://api.github.com/users/forderud/repos","starred_url":"https://api.github.com/users/forderud/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/forderud/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"ed3dbe56378117a15105099870f2397671ad99ab","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1279883385,"number":935,"state":"open","locked":false,"title":"[avstream/sampledevicemft] Fix possible deadlock while changes output stream state","body":"prerequisites:\nThere are multiple output streams.\nBUG:\nIn the CMultipinMft::ProcessOutput function, when the first stream object is obtained and executed to spOpin->ProcessOutput, SetOutputStreamState may be executed at the same time to change the stream state. The latter acquires the lock and begins to wait for the Input stream state change. At this point, the CMultipinMft::ProcessOutput function starts to process the second stream, and cannot acquire the lock. Finally, the DTM deadlock...","created_at":"2023-03-17T08:57:11Z","updated_at":"2023-03-17T09:16:03Z","user":{"login":"jammgit","id":11649483,"node_id":"MDQ6VXNlcjExNjQ5NDgz","avatar_url":"https://avatars.githubusercontent.com/u/11649483?v=4","html_url":"https://github.com/jammgit","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jammgit","events_url":"https://api.github.com/users/jammgit/events{/privacy}","following_url":"https://api.github.com/users/jammgit/following{/other_user}","followers_url":"https://api.github.com/users/jammgit/followers","gists_url":"https://api.github.com/users/jammgit/gists{/gist_id}","organizations_url":"https://api.github.com/users/jammgit/orgs","received_events_url":"https://api.github.com/users/jammgit/received_events","repos_url":"https://api.github.com/users/jammgit/repos","starred_url":"https://api.github.com/users/jammgit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jammgit/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/935","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/935","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/935","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/669db2df278bb0c5e72c234660707395e29ae269","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/935.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/935.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/935/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/935/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/935/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes5MSXh5","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/935"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/935"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/935"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/935/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/935/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/935/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/669db2df278bb0c5e72c234660707395e29ae269"}},"head":{"label":"jammgit:main","ref":"main","sha":"669db2df278bb0c5e72c234660707395e29ae269","repo":{"id":615215459,"node_id":"R_kgDOJKtxYw","owner":{"login":"jammgit","id":11649483,"node_id":"MDQ6VXNlcjExNjQ5NDgz","avatar_url":"https://avatars.githubusercontent.com/u/11649483?v=4","html_url":"https://github.com/jammgit","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jammgit","events_url":"https://api.github.com/users/jammgit/events{/privacy}","following_url":"https://api.github.com/users/jammgit/following{/other_user}","followers_url":"https://api.github.com/users/jammgit/followers","gists_url":"https://api.github.com/users/jammgit/gists{/gist_id}","organizations_url":"https://api.github.com/users/jammgit/orgs","received_events_url":"https://api.github.com/users/jammgit/received_events","repos_url":"https://api.github.com/users/jammgit/repos","starred_url":"https://api.github.com/users/jammgit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jammgit/subscriptions"},"name":"Windows-driver-samples","full_name":"jammgit/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2023-03-17T07:48:07Z","pushed_at":"2023-03-17T08:42:04Z","updated_at":"2023-03-17T08:42:32Z","html_url":"https://github.com/jammgit/Windows-driver-samples","clone_url":"https://github.com/jammgit/Windows-driver-samples.git","git_url":"git://github.com/jammgit/Windows-driver-samples.git","ssh_url":"git@github.com:jammgit/Windows-driver-samples.git","svn_url":"https://github.com/jammgit/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":163717,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/jammgit/Windows-driver-samples","archive_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/jammgit/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"jammgit","id":11649483,"node_id":"MDQ6VXNlcjExNjQ5NDgz","avatar_url":"https://avatars.githubusercontent.com/u/11649483?v=4","html_url":"https://github.com/jammgit","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jammgit","events_url":"https://api.github.com/users/jammgit/events{/privacy}","following_url":"https://api.github.com/users/jammgit/following{/other_user}","followers_url":"https://api.github.com/users/jammgit/followers","gists_url":"https://api.github.com/users/jammgit/gists{/gist_id}","organizations_url":"https://api.github.com/users/jammgit/orgs","received_events_url":"https://api.github.com/users/jammgit/received_events","repos_url":"https://api.github.com/users/jammgit/repos","starred_url":"https://api.github.com/users/jammgit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jammgit/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"b9ef9e4ed67fc2865d72ed2bb0edb1d9d87ab7ec","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1270163402,"number":922,"state":"open","locked":false,"title":"Patch rare infinite loops when enumerating USB_COMMON_DESCRIPTORs ","body":"It turns out there are some devices for which the USB_COMMON_DESCRIPTOR can have a valid pointer but no data (length 0). If this occurs, it can cause an infinite loop in many places where this general code pattern for enumerating USB_COMMON_DESCRIPTORs is repeated throughout the current samples. This change appears to resolve the issue, though I am not 100% certain it does so in an ideal way? I hope it's a quick enough review :)","created_at":"2023-03-09T18:56:25Z","updated_at":"2023-03-09T18:58:00Z","user":{"login":"alan-rowe","id":39470040,"node_id":"MDQ6VXNlcjM5NDcwMDQw","avatar_url":"https://avatars.githubusercontent.com/u/39470040?v=4","html_url":"https://github.com/alan-rowe","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/alan-rowe","events_url":"https://api.github.com/users/alan-rowe/events{/privacy}","following_url":"https://api.github.com/users/alan-rowe/following{/other_user}","followers_url":"https://api.github.com/users/alan-rowe/followers","gists_url":"https://api.github.com/users/alan-rowe/gists{/gist_id}","organizations_url":"https://api.github.com/users/alan-rowe/orgs","received_events_url":"https://api.github.com/users/alan-rowe/received_events","repos_url":"https://api.github.com/users/alan-rowe/repos","starred_url":"https://api.github.com/users/alan-rowe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alan-rowe/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/922","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/922","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/922","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/6b8168d9e10fa0305b6a8150c41255bbcf30985b","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/922.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/922.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/922/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/922/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/922/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes5LtSfK","merge_commit_sha":"9c4ec24b8f64e0be18276445eccef82a277f022f","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/922"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/922"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/922"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/922/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/922/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/922/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/6b8168d9e10fa0305b6a8150c41255bbcf30985b"}},"head":{"label":"alan-rowe:alan-rowe-patch-infinite-loop","ref":"alan-rowe-patch-infinite-loop","sha":"6b8168d9e10fa0305b6a8150c41255bbcf30985b","repo":{"id":611884636,"node_id":"R_kgDOJHieXA","owner":{"login":"alan-rowe","id":39470040,"node_id":"MDQ6VXNlcjM5NDcwMDQw","avatar_url":"https://avatars.githubusercontent.com/u/39470040?v=4","html_url":"https://github.com/alan-rowe","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/alan-rowe","events_url":"https://api.github.com/users/alan-rowe/events{/privacy}","following_url":"https://api.github.com/users/alan-rowe/following{/other_user}","followers_url":"https://api.github.com/users/alan-rowe/followers","gists_url":"https://api.github.com/users/alan-rowe/gists{/gist_id}","organizations_url":"https://api.github.com/users/alan-rowe/orgs","received_events_url":"https://api.github.com/users/alan-rowe/received_events","repos_url":"https://api.github.com/users/alan-rowe/repos","starred_url":"https://api.github.com/users/alan-rowe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alan-rowe/subscriptions"},"name":"Windows-driver-samples","full_name":"alan-rowe/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2023-03-09T18:36:06Z","pushed_at":"2023-03-09T18:51:37Z","updated_at":"2023-03-09T13:30:39Z","html_url":"https://github.com/alan-rowe/Windows-driver-samples","clone_url":"https://github.com/alan-rowe/Windows-driver-samples.git","git_url":"git://github.com/alan-rowe/Windows-driver-samples.git","ssh_url":"git@github.com:alan-rowe/Windows-driver-samples.git","svn_url":"https://github.com/alan-rowe/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":163799,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples","archive_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/alan-rowe/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"alan-rowe","id":39470040,"node_id":"MDQ6VXNlcjM5NDcwMDQw","avatar_url":"https://avatars.githubusercontent.com/u/39470040?v=4","html_url":"https://github.com/alan-rowe","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/alan-rowe","events_url":"https://api.github.com/users/alan-rowe/events{/privacy}","following_url":"https://api.github.com/users/alan-rowe/following{/other_user}","followers_url":"https://api.github.com/users/alan-rowe/followers","gists_url":"https://api.github.com/users/alan-rowe/gists{/gist_id}","organizations_url":"https://api.github.com/users/alan-rowe/orgs","received_events_url":"https://api.github.com/users/alan-rowe/received_events","repos_url":"https://api.github.com/users/alan-rowe/repos","starred_url":"https://api.github.com/users/alan-rowe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alan-rowe/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"8ef4a1cacff8c9967d870f9bfdfa8b3f21754a7f","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1267211221,"number":913,"state":"open","locked":false,"title":"add missing PAGED_CODE() macro","body":"This fixes 43490675 - Missing PAGED_CODE() macros in GitHub Repo Windows Driver Samples: filesys/fastfat/dirsup.c and verfysup.c","created_at":"2023-03-08T02:00:11Z","updated_at":"2023-03-08T02:00:11Z","user":{"login":"darwin-msft","id":42794227,"node_id":"MDQ6VXNlcjQyNzk0MjI3","avatar_url":"https://avatars.githubusercontent.com/u/42794227?v=4","html_url":"https://github.com/darwin-msft","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/darwin-msft","events_url":"https://api.github.com/users/darwin-msft/events{/privacy}","following_url":"https://api.github.com/users/darwin-msft/following{/other_user}","followers_url":"https://api.github.com/users/darwin-msft/followers","gists_url":"https://api.github.com/users/darwin-msft/gists{/gist_id}","organizations_url":"https://api.github.com/users/darwin-msft/orgs","received_events_url":"https://api.github.com/users/darwin-msft/received_events","repos_url":"https://api.github.com/users/darwin-msft/repos","starred_url":"https://api.github.com/users/darwin-msft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darwin-msft/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/913","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/913","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/913","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/582b5009e7a31dd969683fad3e5ce03eec98bb7d","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/913.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/913.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/913/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/913/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/913/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5LiBvV","merge_commit_sha":"daffbf301026f5f906c77b2f68680476e6df163f","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/913"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/913"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/913"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/913/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/913/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/913/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/582b5009e7a31dd969683fad3e5ce03eec98bb7d"}},"head":{"label":"darwin-msft:darwou/fix_missing_pagedcode_macro","ref":"darwou/fix_missing_pagedcode_macro","sha":"582b5009e7a31dd969683fad3e5ce03eec98bb7d","repo":{"id":373028196,"node_id":"MDEwOlJlcG9zaXRvcnkzNzMwMjgxOTY=","owner":{"login":"darwin-msft","id":42794227,"node_id":"MDQ6VXNlcjQyNzk0MjI3","avatar_url":"https://avatars.githubusercontent.com/u/42794227?v=4","html_url":"https://github.com/darwin-msft","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/darwin-msft","events_url":"https://api.github.com/users/darwin-msft/events{/privacy}","following_url":"https://api.github.com/users/darwin-msft/following{/other_user}","followers_url":"https://api.github.com/users/darwin-msft/followers","gists_url":"https://api.github.com/users/darwin-msft/gists{/gist_id}","organizations_url":"https://api.github.com/users/darwin-msft/orgs","received_events_url":"https://api.github.com/users/darwin-msft/received_events","repos_url":"https://api.github.com/users/darwin-msft/repos","starred_url":"https://api.github.com/users/darwin-msft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darwin-msft/subscriptions"},"name":"Windows-driver-samples","full_name":"darwin-msft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2021-06-02T03:28:39Z","pushed_at":"2023-03-08T01:58:59Z","updated_at":"2023-03-08T01:56:43Z","html_url":"https://github.com/darwin-msft/Windows-driver-samples","clone_url":"https://github.com/darwin-msft/Windows-driver-samples.git","git_url":"git://github.com/darwin-msft/Windows-driver-samples.git","ssh_url":"git@github.com:darwin-msft/Windows-driver-samples.git","svn_url":"https://github.com/darwin-msft/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":1,"watchers_count":1,"watchers":1,"size":163714,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples","archive_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/darwin-msft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"darwin-msft","id":42794227,"node_id":"MDQ6VXNlcjQyNzk0MjI3","avatar_url":"https://avatars.githubusercontent.com/u/42794227?v=4","html_url":"https://github.com/darwin-msft","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/darwin-msft","events_url":"https://api.github.com/users/darwin-msft/events{/privacy}","following_url":"https://api.github.com/users/darwin-msft/following{/other_user}","followers_url":"https://api.github.com/users/darwin-msft/followers","gists_url":"https://api.github.com/users/darwin-msft/gists{/gist_id}","organizations_url":"https://api.github.com/users/darwin-msft/orgs","received_events_url":"https://api.github.com/users/darwin-msft/received_events","repos_url":"https://api.github.com/users/darwin-msft/repos","starred_url":"https://api.github.com/users/darwin-msft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darwin-msft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"8ef4a1cacff8c9967d870f9bfdfa8b3f21754a7f","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1232823767,"number":860,"state":"open","locked":false,"title":"user-jakobl-CodeQL-Testing","created_at":"2023-02-08T01:11:11Z","updated_at":"2024-05-22T16:08:16Z","user":{"login":"JakobL-MSFT","id":110699333,"node_id":"U_kgDOBpkjRQ","avatar_url":"https://avatars.githubusercontent.com/u/110699333?v=4","html_url":"https://github.com/JakobL-MSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JakobL-MSFT","events_url":"https://api.github.com/users/JakobL-MSFT/events{/privacy}","following_url":"https://api.github.com/users/JakobL-MSFT/following{/other_user}","followers_url":"https://api.github.com/users/JakobL-MSFT/followers","gists_url":"https://api.github.com/users/JakobL-MSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/JakobL-MSFT/orgs","received_events_url":"https://api.github.com/users/JakobL-MSFT/received_events","repos_url":"https://api.github.com/users/JakobL-MSFT/repos","starred_url":"https://api.github.com/users/JakobL-MSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JakobL-MSFT/subscriptions"},"draft":true,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/860","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/860","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/860","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/f4180517074a64b0127f34e834e914f646f5186a","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/860.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/860.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/860/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/860/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/860/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes5Je2XX","merge_commit_sha":"a9a294853cecf1f6a75ae9e2425f75fffc55fa74","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/860"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/860"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/860"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/860/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/860/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/860/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/f4180517074a64b0127f34e834e914f646f5186a"}},"head":{"label":"microsoft:user-jakobl-CodeQL-Testing","ref":"user-jakobl-CodeQL-Testing","sha":"f4180517074a64b0127f34e834e914f646f5186a","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"1803c6f213fd986b503ec0b9ac272d60fc4fb1f5","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1230947131,"number":854,"state":"open","locked":false,"title":"IoStatus.Information should not be set on cleanup/close. Appears to b…","body":"IoStatus.Information should not be set on cleanup/close. Appears to be copy and paste from Create code.","created_at":"2023-02-06T19:29:13Z","updated_at":"2024-05-22T19:51:18Z","user":{"login":"jeffbromberger","id":6789497,"node_id":"MDQ6VXNlcjY3ODk0OTc=","avatar_url":"https://avatars.githubusercontent.com/u/6789497?v=4","html_url":"https://github.com/jeffbromberger","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jeffbromberger","events_url":"https://api.github.com/users/jeffbromberger/events{/privacy}","following_url":"https://api.github.com/users/jeffbromberger/following{/other_user}","followers_url":"https://api.github.com/users/jeffbromberger/followers","gists_url":"https://api.github.com/users/jeffbromberger/gists{/gist_id}","organizations_url":"https://api.github.com/users/jeffbromberger/orgs","received_events_url":"https://api.github.com/users/jeffbromberger/received_events","repos_url":"https://api.github.com/users/jeffbromberger/repos","starred_url":"https://api.github.com/users/jeffbromberger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeffbromberger/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/854","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/854","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/854","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/32c7e7a24afeba92cb8ac4f2463be1b771ff8bbf","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/854.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/854.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/854/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/854/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/854/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes5JXsM7","merge_commit_sha":"e9618af73e3839ad2aad90fee9116bd1f9722919","requested_teams":[{"id":9426426,"node_id":"T_kwDOAF3p4s4Aj9X6","name":"filesystems","description":"Team for the Windows filesystem samples on GIT","url":"https://api.github.com/organizations/6154722/team/9426426","slug":"filesystems","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/filesystems","members_url":"https://api.github.com/organizations/6154722/team/9426426/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9426426/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/854"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/854"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/854"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/854/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/854/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/854/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/32c7e7a24afeba92cb8ac4f2463be1b771ff8bbf"}},"head":{"label":"jeffbromberger:develop","ref":"develop","sha":"32c7e7a24afeba92cb8ac4f2463be1b771ff8bbf","repo":{"id":598277032,"node_id":"R_kgDOI6j7qA","owner":{"login":"jeffbromberger","id":6789497,"node_id":"MDQ6VXNlcjY3ODk0OTc=","avatar_url":"https://avatars.githubusercontent.com/u/6789497?v=4","html_url":"https://github.com/jeffbromberger","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jeffbromberger","events_url":"https://api.github.com/users/jeffbromberger/events{/privacy}","following_url":"https://api.github.com/users/jeffbromberger/following{/other_user}","followers_url":"https://api.github.com/users/jeffbromberger/followers","gists_url":"https://api.github.com/users/jeffbromberger/gists{/gist_id}","organizations_url":"https://api.github.com/users/jeffbromberger/orgs","received_events_url":"https://api.github.com/users/jeffbromberger/received_events","repos_url":"https://api.github.com/users/jeffbromberger/repos","starred_url":"https://api.github.com/users/jeffbromberger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeffbromberger/subscriptions"},"name":"Windows-driver-samples","full_name":"jeffbromberger/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2023-02-06T19:18:26Z","pushed_at":"2023-05-08T18:12:05Z","updated_at":"2023-05-08T18:12:10Z","html_url":"https://github.com/jeffbromberger/Windows-driver-samples","clone_url":"https://github.com/jeffbromberger/Windows-driver-samples.git","git_url":"git://github.com/jeffbromberger/Windows-driver-samples.git","ssh_url":"git@github.com:jeffbromberger/Windows-driver-samples.git","svn_url":"https://github.com/jeffbromberger/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":164567,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples","archive_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/jeffbromberger/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"jeffbromberger","id":6789497,"node_id":"MDQ6VXNlcjY3ODk0OTc=","avatar_url":"https://avatars.githubusercontent.com/u/6789497?v=4","html_url":"https://github.com/jeffbromberger","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jeffbromberger","events_url":"https://api.github.com/users/jeffbromberger/events{/privacy}","following_url":"https://api.github.com/users/jeffbromberger/following{/other_user}","followers_url":"https://api.github.com/users/jeffbromberger/followers","gists_url":"https://api.github.com/users/jeffbromberger/gists{/gist_id}","organizations_url":"https://api.github.com/users/jeffbromberger/orgs","received_events_url":"https://api.github.com/users/jeffbromberger/received_events","repos_url":"https://api.github.com/users/jeffbromberger/repos","starred_url":"https://api.github.com/users/jeffbromberger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jeffbromberger/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"ba0a57a50f9995610e909492aa3a1df9d6c51f70","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1034805692,"number":774,"state":"open","locked":false,"title":"[hid\\hclient] Passing right arguments to reopen device for write","body":"When reopening the device handle to write, `OpenHidDevice` is called with exactly the same arguments as is done when reopening the device for reading(just a few lines above the change for comparison).\n\nThis PR is intended to fix that.\n\nFrom what I can tell this bug has been there for a looong while?","created_at":"2022-08-23T23:41:34Z","updated_at":"2022-08-23T23:41:34Z","user":{"login":"DrInfiniteExplorer","id":5090341,"node_id":"MDQ6VXNlcjUwOTAzNDE=","avatar_url":"https://avatars.githubusercontent.com/u/5090341?v=4","html_url":"https://github.com/DrInfiniteExplorer","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/DrInfiniteExplorer","events_url":"https://api.github.com/users/DrInfiniteExplorer/events{/privacy}","following_url":"https://api.github.com/users/DrInfiniteExplorer/following{/other_user}","followers_url":"https://api.github.com/users/DrInfiniteExplorer/followers","gists_url":"https://api.github.com/users/DrInfiniteExplorer/gists{/gist_id}","organizations_url":"https://api.github.com/users/DrInfiniteExplorer/orgs","received_events_url":"https://api.github.com/users/DrInfiniteExplorer/received_events","repos_url":"https://api.github.com/users/DrInfiniteExplorer/repos","starred_url":"https://api.github.com/users/DrInfiniteExplorer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DrInfiniteExplorer/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/774","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/774","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/774","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/24a53c007ce7bb599f13dddd567c781affa65137","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/774.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/774.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/774/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/774/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/774/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes49reG8","merge_commit_sha":"d1ba3ecdfee7982f7e1125bc66b0d091c842e593","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/774"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/774"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/774"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/774/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/774/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/774/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/24a53c007ce7bb599f13dddd567c781affa65137"}},"head":{"label":"DrInfiniteExplorer:pass-right-args-for-write-reopen","ref":"pass-right-args-for-write-reopen","sha":"24a53c007ce7bb599f13dddd567c781affa65137","repo":{"id":528195431,"node_id":"R_kgDOH3ufZw","owner":{"login":"DrInfiniteExplorer","id":5090341,"node_id":"MDQ6VXNlcjUwOTAzNDE=","avatar_url":"https://avatars.githubusercontent.com/u/5090341?v=4","html_url":"https://github.com/DrInfiniteExplorer","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/DrInfiniteExplorer","events_url":"https://api.github.com/users/DrInfiniteExplorer/events{/privacy}","following_url":"https://api.github.com/users/DrInfiniteExplorer/following{/other_user}","followers_url":"https://api.github.com/users/DrInfiniteExplorer/followers","gists_url":"https://api.github.com/users/DrInfiniteExplorer/gists{/gist_id}","organizations_url":"https://api.github.com/users/DrInfiniteExplorer/orgs","received_events_url":"https://api.github.com/users/DrInfiniteExplorer/received_events","repos_url":"https://api.github.com/users/DrInfiniteExplorer/repos","starred_url":"https://api.github.com/users/DrInfiniteExplorer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DrInfiniteExplorer/subscriptions"},"name":"Windows-driver-samples","full_name":"DrInfiniteExplorer/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2022-08-23T23:27:27Z","pushed_at":"2022-08-23T23:31:55Z","updated_at":"2022-08-23T16:11:08Z","html_url":"https://github.com/DrInfiniteExplorer/Windows-driver-samples","clone_url":"https://github.com/DrInfiniteExplorer/Windows-driver-samples.git","git_url":"git://github.com/DrInfiniteExplorer/Windows-driver-samples.git","ssh_url":"git@github.com:DrInfiniteExplorer/Windows-driver-samples.git","svn_url":"https://github.com/DrInfiniteExplorer/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":164381,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples","archive_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/DrInfiniteExplorer/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"DrInfiniteExplorer","id":5090341,"node_id":"MDQ6VXNlcjUwOTAzNDE=","avatar_url":"https://avatars.githubusercontent.com/u/5090341?v=4","html_url":"https://github.com/DrInfiniteExplorer","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/DrInfiniteExplorer","events_url":"https://api.github.com/users/DrInfiniteExplorer/events{/privacy}","following_url":"https://api.github.com/users/DrInfiniteExplorer/following{/other_user}","followers_url":"https://api.github.com/users/DrInfiniteExplorer/followers","gists_url":"https://api.github.com/users/DrInfiniteExplorer/gists{/gist_id}","organizations_url":"https://api.github.com/users/DrInfiniteExplorer/orgs","received_events_url":"https://api.github.com/users/DrInfiniteExplorer/received_events","repos_url":"https://api.github.com/users/DrInfiniteExplorer/repos","starred_url":"https://api.github.com/users/DrInfiniteExplorer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DrInfiniteExplorer/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"73c55fdc2e3d407ee39521ff4a1b2ea6791f134e","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":1001230301,"number":760,"state":"open","locked":false,"title":"Fix build issue in DCHU project","created_at":"2022-07-19T20:48:02Z","updated_at":"2024-05-22T19:53:47Z","user":{"login":"andylsn","id":11987473,"node_id":"MDQ6VXNlcjExOTg3NDcz","avatar_url":"https://avatars.githubusercontent.com/u/11987473?v=4","html_url":"https://github.com/andylsn","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/andylsn","events_url":"https://api.github.com/users/andylsn/events{/privacy}","following_url":"https://api.github.com/users/andylsn/following{/other_user}","followers_url":"https://api.github.com/users/andylsn/followers","gists_url":"https://api.github.com/users/andylsn/gists{/gist_id}","organizations_url":"https://api.github.com/users/andylsn/orgs","received_events_url":"https://api.github.com/users/andylsn/received_events","repos_url":"https://api.github.com/users/andylsn/repos","starred_url":"https://api.github.com/users/andylsn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andylsn/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/760","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/760","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/760","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/e09a9ea3075a7b1ba8cca97e525057e898c03a90","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/760.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/760.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/760/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/760/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/760/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes47rY_d","requested_teams":[{"id":9974817,"node_id":"T_kwDOAF3p4s4AmDQh","name":"PnP","description":"Plug and Play device and driver platform development team","url":"https://api.github.com/organizations/6154722/team/9974817","slug":"pnp","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/pnp","members_url":"https://api.github.com/organizations/6154722/team/9974817/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9974817/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/760"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/760"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/760"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/760/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/760/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/760/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/e09a9ea3075a7b1ba8cca97e525057e898c03a90"}},"head":{"label":"andylsn:FixDchuBuildIssue","ref":"FixDchuBuildIssue","sha":"e09a9ea3075a7b1ba8cca97e525057e898c03a90","repo":{"id":179180851,"node_id":"MDEwOlJlcG9zaXRvcnkxNzkxODA4NTE=","owner":{"login":"andylsn","id":11987473,"node_id":"MDQ6VXNlcjExOTg3NDcz","avatar_url":"https://avatars.githubusercontent.com/u/11987473?v=4","html_url":"https://github.com/andylsn","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/andylsn","events_url":"https://api.github.com/users/andylsn/events{/privacy}","following_url":"https://api.github.com/users/andylsn/following{/other_user}","followers_url":"https://api.github.com/users/andylsn/followers","gists_url":"https://api.github.com/users/andylsn/gists{/gist_id}","organizations_url":"https://api.github.com/users/andylsn/orgs","received_events_url":"https://api.github.com/users/andylsn/received_events","repos_url":"https://api.github.com/users/andylsn/repos","starred_url":"https://api.github.com/users/andylsn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andylsn/subscriptions"},"name":"Windows-driver-samples","full_name":"andylsn/Windows-driver-samples","description":"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.","homepage":"","default_branch":"develop","created_at":"2019-04-03T00:38:17Z","pushed_at":"2024-01-24T03:08:52Z","updated_at":"2022-07-19T20:44:14Z","html_url":"https://github.com/andylsn/Windows-driver-samples","clone_url":"https://github.com/andylsn/Windows-driver-samples.git","git_url":"git://github.com/andylsn/Windows-driver-samples.git","ssh_url":"git@github.com:andylsn/Windows-driver-samples.git","svn_url":"https://github.com/andylsn/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":164180,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/andylsn/Windows-driver-samples","archive_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/andylsn/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"andylsn","id":11987473,"node_id":"MDQ6VXNlcjExOTg3NDcz","avatar_url":"https://avatars.githubusercontent.com/u/11987473?v=4","html_url":"https://github.com/andylsn","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/andylsn","events_url":"https://api.github.com/users/andylsn/events{/privacy}","following_url":"https://api.github.com/users/andylsn/following{/other_user}","followers_url":"https://api.github.com/users/andylsn/followers","gists_url":"https://api.github.com/users/andylsn/gists{/gist_id}","organizations_url":"https://api.github.com/users/andylsn/orgs","received_events_url":"https://api.github.com/users/andylsn/received_events","repos_url":"https://api.github.com/users/andylsn/repos","starred_url":"https://api.github.com/users/andylsn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andylsn/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"ba0a57a50f9995610e909492aa3a1df9d6c51f70","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":965210435,"number":744,"state":"open","locked":false,"title":"Typo ".VcxProj"β†’".vcxproj"","body":"https://docs.microsoft.com/en-us/samples/microsoft/windows-driver-samples/fastfat-file-system-driver/\nhttps://github.com/microsoft/Windows-driver-samples/blob/main/filesys/fastfat/README.md\n#PingMSFTDocs","created_at":"2022-06-13T03:17:36Z","updated_at":"2022-07-04T09:32:05Z","user":{"login":"hyoshioka0128","id":40815708,"node_id":"MDQ6VXNlcjQwODE1NzA4","avatar_url":"https://avatars.githubusercontent.com/u/40815708?v=4","html_url":"https://github.com/hyoshioka0128","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/hyoshioka0128","events_url":"https://api.github.com/users/hyoshioka0128/events{/privacy}","following_url":"https://api.github.com/users/hyoshioka0128/following{/other_user}","followers_url":"https://api.github.com/users/hyoshioka0128/followers","gists_url":"https://api.github.com/users/hyoshioka0128/gists{/gist_id}","organizations_url":"https://api.github.com/users/hyoshioka0128/orgs","received_events_url":"https://api.github.com/users/hyoshioka0128/received_events","repos_url":"https://api.github.com/users/hyoshioka0128/repos","starred_url":"https://api.github.com/users/hyoshioka0128/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hyoshioka0128/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/744","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/744","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/744","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/bf8238119b8a4b363b277717edf2bd5b38ce098f","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/744.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/744.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/744/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/744/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/744/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"PR_kwDOAeUZes45h_FD","merge_commit_sha":"9f874894bdca10d87fecae966c7d6d9471600eda","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/744"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/744"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/744"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/744/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/744/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/744/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/bf8238119b8a4b363b277717edf2bd5b38ce098f"}},"head":{"label":"hyoshioka0128:patch-7","ref":"patch-7","sha":"bf8238119b8a4b363b277717edf2bd5b38ce098f","repo":{"id":493901158,"node_id":"R_kgDOHXBVZg","owner":{"login":"hyoshioka0128","id":40815708,"node_id":"MDQ6VXNlcjQwODE1NzA4","avatar_url":"https://avatars.githubusercontent.com/u/40815708?v=4","html_url":"https://github.com/hyoshioka0128","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/hyoshioka0128","events_url":"https://api.github.com/users/hyoshioka0128/events{/privacy}","following_url":"https://api.github.com/users/hyoshioka0128/following{/other_user}","followers_url":"https://api.github.com/users/hyoshioka0128/followers","gists_url":"https://api.github.com/users/hyoshioka0128/gists{/gist_id}","organizations_url":"https://api.github.com/users/hyoshioka0128/orgs","received_events_url":"https://api.github.com/users/hyoshioka0128/received_events","repos_url":"https://api.github.com/users/hyoshioka0128/repos","starred_url":"https://api.github.com/users/hyoshioka0128/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hyoshioka0128/subscriptions"},"name":"Windows-driver-samples","full_name":"hyoshioka0128/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2022-05-19T03:02:41Z","pushed_at":"2023-01-22T15:17:35Z","updated_at":"2022-05-18T09:39:16Z","html_url":"https://github.com/hyoshioka0128/Windows-driver-samples","clone_url":"https://github.com/hyoshioka0128/Windows-driver-samples.git","git_url":"git://github.com/hyoshioka0128/Windows-driver-samples.git","ssh_url":"git@github.com:hyoshioka0128/Windows-driver-samples.git","svn_url":"https://github.com/hyoshioka0128/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":164153,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples","archive_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/hyoshioka0128/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"hyoshioka0128","id":40815708,"node_id":"MDQ6VXNlcjQwODE1NzA4","avatar_url":"https://avatars.githubusercontent.com/u/40815708?v=4","html_url":"https://github.com/hyoshioka0128","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/hyoshioka0128","events_url":"https://api.github.com/users/hyoshioka0128/events{/privacy}","following_url":"https://api.github.com/users/hyoshioka0128/following{/other_user}","followers_url":"https://api.github.com/users/hyoshioka0128/followers","gists_url":"https://api.github.com/users/hyoshioka0128/gists{/gist_id}","organizations_url":"https://api.github.com/users/hyoshioka0128/orgs","received_events_url":"https://api.github.com/users/hyoshioka0128/received_events","repos_url":"https://api.github.com/users/hyoshioka0128/repos","starred_url":"https://api.github.com/users/hyoshioka0128/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hyoshioka0128/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"9790fc29f3480068ee036d96f6a5b95976960d2e","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":844434435,"number":690,"state":"open","locked":false,"title":"Update simple custom media sample","body":"Update to match internal repo:\n- Add copyrights\n- Add null checks for buffers\n- Add brackets to if statements\n- Update driver version number and trace.h module name","created_at":"2022-02-09T22:59:47Z","updated_at":"2022-04-20T20:53:17Z","user":{"login":"vclin0","id":30359224,"node_id":"MDQ6VXNlcjMwMzU5MjI0","avatar_url":"https://avatars.githubusercontent.com/u/30359224?v=4","html_url":"https://github.com/vclin0","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/vclin0","events_url":"https://api.github.com/users/vclin0/events{/privacy}","following_url":"https://api.github.com/users/vclin0/following{/other_user}","followers_url":"https://api.github.com/users/vclin0/followers","gists_url":"https://api.github.com/users/vclin0/gists{/gist_id}","organizations_url":"https://api.github.com/users/vclin0/orgs","received_events_url":"https://api.github.com/users/vclin0/received_events","repos_url":"https://api.github.com/users/vclin0/repos","starred_url":"https://api.github.com/users/vclin0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vclin0/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/690","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/690","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/690","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/e69840f5cb8bb82e58c34f16d086287085c3b996","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/690.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/690.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/690/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/690/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/690/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes4yVQwD","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/690"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/690"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/690"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/690/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/690/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/690/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/e69840f5cb8bb82e58c34f16d086287085c3b996"}},"head":{"label":"vclin0:master","ref":"master","sha":"e69840f5cb8bb82e58c34f16d086287085c3b996","repo":{"id":457550103,"node_id":"R_kgDOG0WpFw","owner":{"login":"vclin0","id":30359224,"node_id":"MDQ6VXNlcjMwMzU5MjI0","avatar_url":"https://avatars.githubusercontent.com/u/30359224?v=4","html_url":"https://github.com/vclin0","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/vclin0","events_url":"https://api.github.com/users/vclin0/events{/privacy}","following_url":"https://api.github.com/users/vclin0/following{/other_user}","followers_url":"https://api.github.com/users/vclin0/followers","gists_url":"https://api.github.com/users/vclin0/gists{/gist_id}","organizations_url":"https://api.github.com/users/vclin0/orgs","received_events_url":"https://api.github.com/users/vclin0/received_events","repos_url":"https://api.github.com/users/vclin0/repos","starred_url":"https://api.github.com/users/vclin0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vclin0/subscriptions"},"name":"Windows-driver-samples","full_name":"vclin0/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2022-02-09T22:31:50Z","pushed_at":"2022-02-09T22:54:37Z","updated_at":"2022-02-09T22:55:04Z","html_url":"https://github.com/vclin0/Windows-driver-samples","clone_url":"https://github.com/vclin0/Windows-driver-samples.git","git_url":"git://github.com/vclin0/Windows-driver-samples.git","ssh_url":"git@github.com:vclin0/Windows-driver-samples.git","svn_url":"https://github.com/vclin0/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":163454,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/vclin0/Windows-driver-samples","archive_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/vclin0/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"vclin0","id":30359224,"node_id":"MDQ6VXNlcjMwMzU5MjI0","avatar_url":"https://avatars.githubusercontent.com/u/30359224?v=4","html_url":"https://github.com/vclin0","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/vclin0","events_url":"https://api.github.com/users/vclin0/events{/privacy}","following_url":"https://api.github.com/users/vclin0/following{/other_user}","followers_url":"https://api.github.com/users/vclin0/followers","gists_url":"https://api.github.com/users/vclin0/gists{/gist_id}","organizations_url":"https://api.github.com/users/vclin0/orgs","received_events_url":"https://api.github.com/users/vclin0/received_events","repos_url":"https://api.github.com/users/vclin0/repos","starred_url":"https://api.github.com/users/vclin0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vclin0/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"9f03207ae1e8df83325f067de84494ae55ab5e97","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":832748453,"number":687,"state":"open","locked":false,"title":"Delete sub layer in case of failure","body":"Delete the created sub-layer in case of failure instead of relying on `FwpmTransactionAbort` in order to prevent potentially leaked sub-layer. ","created_at":"2022-01-26T19:37:10Z","updated_at":"2024-05-22T19:50:26Z","user":{"login":"AvivShabtay","id":20494368,"node_id":"MDQ6VXNlcjIwNDk0MzY4","avatar_url":"https://avatars.githubusercontent.com/u/20494368?v=4","html_url":"https://github.com/AvivShabtay","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/AvivShabtay","events_url":"https://api.github.com/users/AvivShabtay/events{/privacy}","following_url":"https://api.github.com/users/AvivShabtay/following{/other_user}","followers_url":"https://api.github.com/users/AvivShabtay/followers","gists_url":"https://api.github.com/users/AvivShabtay/gists{/gist_id}","organizations_url":"https://api.github.com/users/AvivShabtay/orgs","received_events_url":"https://api.github.com/users/AvivShabtay/received_events","repos_url":"https://api.github.com/users/AvivShabtay/repos","starred_url":"https://api.github.com/users/AvivShabtay/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AvivShabtay/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/687","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/687","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/687","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/55eb668817c96f24ba3f4c0cb91bce6ac244debc","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/687.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/687.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/687/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/687/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/687/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"PR_kwDOAeUZes4xorul","merge_commit_sha":"568039e7920f9482b307aa81346aa29702db3729","requested_teams":[{"id":8962301,"node_id":"T_kwDOAF3p4s4AiMD9","name":"NetSec","description":"Network Security","url":"https://api.github.com/organizations/6154722/team/8962301","slug":"netsec","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/netsec","members_url":"https://api.github.com/organizations/6154722/team/8962301/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/8962301/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/687"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/687"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/687"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/687/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/687/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/687/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/55eb668817c96f24ba3f4c0cb91bce6ac244debc"}},"head":{"label":"AvivShabtay:aviv/DeleteSubLayerOnFailure","ref":"aviv/DeleteSubLayerOnFailure","sha":"55eb668817c96f24ba3f4c0cb91bce6ac244debc","repo":{"id":452406862,"node_id":"R_kgDOGvcuTg","owner":{"login":"AvivShabtay","id":20494368,"node_id":"MDQ6VXNlcjIwNDk0MzY4","avatar_url":"https://avatars.githubusercontent.com/u/20494368?v=4","html_url":"https://github.com/AvivShabtay","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/AvivShabtay","events_url":"https://api.github.com/users/AvivShabtay/events{/privacy}","following_url":"https://api.github.com/users/AvivShabtay/following{/other_user}","followers_url":"https://api.github.com/users/AvivShabtay/followers","gists_url":"https://api.github.com/users/AvivShabtay/gists{/gist_id}","organizations_url":"https://api.github.com/users/AvivShabtay/orgs","received_events_url":"https://api.github.com/users/AvivShabtay/received_events","repos_url":"https://api.github.com/users/AvivShabtay/repos","starred_url":"https://api.github.com/users/AvivShabtay/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AvivShabtay/subscriptions"},"name":"Windows-driver-samples","full_name":"AvivShabtay/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2022-01-26T19:12:51Z","pushed_at":"2022-01-26T19:33:08Z","updated_at":"2022-01-26T08:33:18Z","html_url":"https://github.com/AvivShabtay/Windows-driver-samples","clone_url":"https://github.com/AvivShabtay/Windows-driver-samples.git","git_url":"git://github.com/AvivShabtay/Windows-driver-samples.git","ssh_url":"git@github.com:AvivShabtay/Windows-driver-samples.git","svn_url":"https://github.com/AvivShabtay/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":163382,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples","archive_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/AvivShabtay/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"AvivShabtay","id":20494368,"node_id":"MDQ6VXNlcjIwNDk0MzY4","avatar_url":"https://avatars.githubusercontent.com/u/20494368?v=4","html_url":"https://github.com/AvivShabtay","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/AvivShabtay","events_url":"https://api.github.com/users/AvivShabtay/events{/privacy}","following_url":"https://api.github.com/users/AvivShabtay/following{/other_user}","followers_url":"https://api.github.com/users/AvivShabtay/followers","gists_url":"https://api.github.com/users/AvivShabtay/gists{/gist_id}","organizations_url":"https://api.github.com/users/AvivShabtay/orgs","received_events_url":"https://api.github.com/users/AvivShabtay/received_events","repos_url":"https://api.github.com/users/AvivShabtay/repos","starred_url":"https://api.github.com/users/AvivShabtay/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AvivShabtay/subscriptions"}},"base":{"label":"microsoft:develop","ref":"develop","sha":"ba0a57a50f9995610e909492aa3a1df9d6c51f70","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":691756557,"number":651,"state":"open","locked":false,"title":"Initial publish of Print Support App sample","body":"","created_at":"2021-07-16T21:39:27Z","updated_at":"2022-04-20T20:53:16Z","user":{"login":"takashi-moriyama","id":23492913,"node_id":"MDQ6VXNlcjIzNDkyOTEz","avatar_url":"https://avatars.githubusercontent.com/u/23492913?v=4","html_url":"https://github.com/takashi-moriyama","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/takashi-moriyama","events_url":"https://api.github.com/users/takashi-moriyama/events{/privacy}","following_url":"https://api.github.com/users/takashi-moriyama/following{/other_user}","followers_url":"https://api.github.com/users/takashi-moriyama/followers","gists_url":"https://api.github.com/users/takashi-moriyama/gists{/gist_id}","organizations_url":"https://api.github.com/users/takashi-moriyama/orgs","received_events_url":"https://api.github.com/users/takashi-moriyama/received_events","repos_url":"https://api.github.com/users/takashi-moriyama/repos","starred_url":"https://api.github.com/users/takashi-moriyama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/takashi-moriyama/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/651","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/651","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/651","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/a1ac399282adfbb74526cea886dd1ac2bdb8c183","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/651.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/651.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/651/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/651/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/651/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NjkxNzU2NTU3","merge_commit_sha":"b8703cf394470df99f087ddef57ebb5d8f4fdf40","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/651"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/651"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/651"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/651/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/651/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/651/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/a1ac399282adfbb74526cea886dd1ac2bdb8c183"}},"head":{"label":"takashi-moriyama:master","ref":"master","sha":"a1ac399282adfbb74526cea886dd1ac2bdb8c183","repo":{"id":386433717,"node_id":"MDEwOlJlcG9zaXRvcnkzODY0MzM3MTc=","owner":{"login":"takashi-moriyama","id":23492913,"node_id":"MDQ6VXNlcjIzNDkyOTEz","avatar_url":"https://avatars.githubusercontent.com/u/23492913?v=4","html_url":"https://github.com/takashi-moriyama","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/takashi-moriyama","events_url":"https://api.github.com/users/takashi-moriyama/events{/privacy}","following_url":"https://api.github.com/users/takashi-moriyama/following{/other_user}","followers_url":"https://api.github.com/users/takashi-moriyama/followers","gists_url":"https://api.github.com/users/takashi-moriyama/gists{/gist_id}","organizations_url":"https://api.github.com/users/takashi-moriyama/orgs","received_events_url":"https://api.github.com/users/takashi-moriyama/received_events","repos_url":"https://api.github.com/users/takashi-moriyama/repos","starred_url":"https://api.github.com/users/takashi-moriyama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/takashi-moriyama/subscriptions"},"name":"Windows-driver-samples","full_name":"takashi-moriyama/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2021-07-15T21:56:34Z","pushed_at":"2021-07-16T21:06:40Z","updated_at":"2021-07-16T21:06:48Z","html_url":"https://github.com/takashi-moriyama/Windows-driver-samples","clone_url":"https://github.com/takashi-moriyama/Windows-driver-samples.git","git_url":"git://github.com/takashi-moriyama/Windows-driver-samples.git","ssh_url":"git@github.com:takashi-moriyama/Windows-driver-samples.git","svn_url":"https://github.com/takashi-moriyama/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":163499,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples","archive_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/takashi-moriyama/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"takashi-moriyama","id":23492913,"node_id":"MDQ6VXNlcjIzNDkyOTEz","avatar_url":"https://avatars.githubusercontent.com/u/23492913?v=4","html_url":"https://github.com/takashi-moriyama","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/takashi-moriyama","events_url":"https://api.github.com/users/takashi-moriyama/events{/privacy}","following_url":"https://api.github.com/users/takashi-moriyama/following{/other_user}","followers_url":"https://api.github.com/users/takashi-moriyama/followers","gists_url":"https://api.github.com/users/takashi-moriyama/gists{/gist_id}","organizations_url":"https://api.github.com/users/takashi-moriyama/orgs","received_events_url":"https://api.github.com/users/takashi-moriyama/received_events","repos_url":"https://api.github.com/users/takashi-moriyama/repos","starred_url":"https://api.github.com/users/takashi-moriyama/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/takashi-moriyama/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"36e28ad25692434f9b75a8a49d93ffa4eb6f4400","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":654299081,"number":623,"state":"open","locked":false,"title":"User/maige/inspect sample fixes","body":"","created_at":"2021-05-26T22:41:03Z","updated_at":"2022-04-20T20:53:16Z","user":{"login":"matthewige","id":10822744,"node_id":"MDQ6VXNlcjEwODIyNzQ0","avatar_url":"https://avatars.githubusercontent.com/u/10822744?v=4","html_url":"https://github.com/matthewige","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/matthewige","events_url":"https://api.github.com/users/matthewige/events{/privacy}","following_url":"https://api.github.com/users/matthewige/following{/other_user}","followers_url":"https://api.github.com/users/matthewige/followers","gists_url":"https://api.github.com/users/matthewige/gists{/gist_id}","organizations_url":"https://api.github.com/users/matthewige/orgs","received_events_url":"https://api.github.com/users/matthewige/received_events","repos_url":"https://api.github.com/users/matthewige/repos","starred_url":"https://api.github.com/users/matthewige/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matthewige/subscriptions"},"draft":true,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/623","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/623","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/623","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/9c7c1ea5c6dc68a8af398c89c9b89ea233d710fb","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/623.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/623.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/623/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/623/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/623/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NjU0Mjk5MDgx","merge_commit_sha":"bdbe39b6c96307f50fd391c2440863ad80b55d17","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/623"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/623"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/623"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/623/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/623/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/623/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/9c7c1ea5c6dc68a8af398c89c9b89ea233d710fb"}},"head":{"label":"matthewige:user/maige/inspectSampleFixes","ref":"user/maige/inspectSampleFixes","sha":"9c7c1ea5c6dc68a8af398c89c9b89ea233d710fb","repo":{"id":367433105,"node_id":"MDEwOlJlcG9zaXRvcnkzNjc0MzMxMDU=","owner":{"login":"matthewige","id":10822744,"node_id":"MDQ6VXNlcjEwODIyNzQ0","avatar_url":"https://avatars.githubusercontent.com/u/10822744?v=4","html_url":"https://github.com/matthewige","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/matthewige","events_url":"https://api.github.com/users/matthewige/events{/privacy}","following_url":"https://api.github.com/users/matthewige/following{/other_user}","followers_url":"https://api.github.com/users/matthewige/followers","gists_url":"https://api.github.com/users/matthewige/gists{/gist_id}","organizations_url":"https://api.github.com/users/matthewige/orgs","received_events_url":"https://api.github.com/users/matthewige/received_events","repos_url":"https://api.github.com/users/matthewige/repos","starred_url":"https://api.github.com/users/matthewige/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matthewige/subscriptions"},"name":"Windows-driver-samples","full_name":"matthewige/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2021-05-14T17:19:27Z","pushed_at":"2021-06-16T20:15:35Z","updated_at":"2021-05-14T17:19:29Z","html_url":"https://github.com/matthewige/Windows-driver-samples","clone_url":"https://github.com/matthewige/Windows-driver-samples.git","git_url":"git://github.com/matthewige/Windows-driver-samples.git","ssh_url":"git@github.com:matthewige/Windows-driver-samples.git","svn_url":"https://github.com/matthewige/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":163285,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/matthewige/Windows-driver-samples","archive_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/matthewige/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"matthewige","id":10822744,"node_id":"MDQ6VXNlcjEwODIyNzQ0","avatar_url":"https://avatars.githubusercontent.com/u/10822744?v=4","html_url":"https://github.com/matthewige","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/matthewige","events_url":"https://api.github.com/users/matthewige/events{/privacy}","following_url":"https://api.github.com/users/matthewige/following{/other_user}","followers_url":"https://api.github.com/users/matthewige/followers","gists_url":"https://api.github.com/users/matthewige/gists{/gist_id}","organizations_url":"https://api.github.com/users/matthewige/orgs","received_events_url":"https://api.github.com/users/matthewige/received_events","repos_url":"https://api.github.com/users/matthewige/repos","starred_url":"https://api.github.com/users/matthewige/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matthewige/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"4fe5787f122fdfc45253b45f9fad3983f53d86df","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":621677299,"number":616,"state":"open","locked":false,"title":"[video\\KMDOD]: Switch to ExAllocatePool2","body":"","created_at":"2021-04-23T00:27:53Z","updated_at":"2022-04-20T20:53:16Z","user":{"login":"zeusk","id":1236202,"node_id":"MDQ6VXNlcjEyMzYyMDI=","avatar_url":"https://avatars.githubusercontent.com/u/1236202?v=4","html_url":"https://github.com/zeusk","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/zeusk","events_url":"https://api.github.com/users/zeusk/events{/privacy}","following_url":"https://api.github.com/users/zeusk/following{/other_user}","followers_url":"https://api.github.com/users/zeusk/followers","gists_url":"https://api.github.com/users/zeusk/gists{/gist_id}","organizations_url":"https://api.github.com/users/zeusk/orgs","received_events_url":"https://api.github.com/users/zeusk/received_events","repos_url":"https://api.github.com/users/zeusk/repos","starred_url":"https://api.github.com/users/zeusk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zeusk/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/616","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/616","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/616","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/46efe30392b5e801d08307ec4ae86816c5379d27","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/616.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/616.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/616/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/616/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/616/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NjIxNjc3Mjk5","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/616"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/616"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/616"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/616/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/616/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/616/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/46efe30392b5e801d08307ec4ae86816c5379d27"}},"head":{"label":"zeusk:user/shagu/kmdod-ExAllocatePool2","ref":"user/shagu/kmdod-ExAllocatePool2","sha":"46efe30392b5e801d08307ec4ae86816c5379d27","repo":{"id":241738389,"node_id":"MDEwOlJlcG9zaXRvcnkyNDE3MzgzODk=","owner":{"login":"zeusk","id":1236202,"node_id":"MDQ6VXNlcjEyMzYyMDI=","avatar_url":"https://avatars.githubusercontent.com/u/1236202?v=4","html_url":"https://github.com/zeusk","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/zeusk","events_url":"https://api.github.com/users/zeusk/events{/privacy}","following_url":"https://api.github.com/users/zeusk/following{/other_user}","followers_url":"https://api.github.com/users/zeusk/followers","gists_url":"https://api.github.com/users/zeusk/gists{/gist_id}","organizations_url":"https://api.github.com/users/zeusk/orgs","received_events_url":"https://api.github.com/users/zeusk/received_events","repos_url":"https://api.github.com/users/zeusk/repos","starred_url":"https://api.github.com/users/zeusk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zeusk/subscriptions"},"name":"Windows-driver-samples","full_name":"zeusk/Windows-driver-samples","description":"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.","homepage":"","default_branch":"user/shagu/iddcx-sample","created_at":"2020-02-19T22:16:26Z","pushed_at":"2021-04-23T00:27:13Z","updated_at":"2020-03-26T18:15:41Z","html_url":"https://github.com/zeusk/Windows-driver-samples","clone_url":"https://github.com/zeusk/Windows-driver-samples.git","git_url":"git://github.com/zeusk/Windows-driver-samples.git","ssh_url":"git@github.com:zeusk/Windows-driver-samples.git","svn_url":"https://github.com/zeusk/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":1,"watchers_count":1,"watchers":1,"size":163068,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/zeusk/Windows-driver-samples","archive_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/zeusk/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"zeusk","id":1236202,"node_id":"MDQ6VXNlcjEyMzYyMDI=","avatar_url":"https://avatars.githubusercontent.com/u/1236202?v=4","html_url":"https://github.com/zeusk","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/zeusk","events_url":"https://api.github.com/users/zeusk/events{/privacy}","following_url":"https://api.github.com/users/zeusk/following{/other_user}","followers_url":"https://api.github.com/users/zeusk/followers","gists_url":"https://api.github.com/users/zeusk/gists{/gist_id}","organizations_url":"https://api.github.com/users/zeusk/orgs","received_events_url":"https://api.github.com/users/zeusk/received_events","repos_url":"https://api.github.com/users/zeusk/repos","starred_url":"https://api.github.com/users/zeusk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zeusk/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":613811268,"number":604,"state":"open","locked":false,"title":"(USBView) Add MIDI device class support","body":"Adds support for version 1.0 of the USB Device Class Definition for MIDI Devices to the USBView application. Changes to existing code are minimal and non-invasive.\n\nFixes #603 ","created_at":"2021-04-12T17:30:08Z","updated_at":"2025-12-19T01:16:55Z","user":{"login":"tendrils","id":9058315,"node_id":"MDQ6VXNlcjkwNTgzMTU=","avatar_url":"https://avatars.githubusercontent.com/u/9058315?v=4","html_url":"https://github.com/tendrils","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/tendrils","events_url":"https://api.github.com/users/tendrils/events{/privacy}","following_url":"https://api.github.com/users/tendrils/following{/other_user}","followers_url":"https://api.github.com/users/tendrils/followers","gists_url":"https://api.github.com/users/tendrils/gists{/gist_id}","organizations_url":"https://api.github.com/users/tendrils/orgs","received_events_url":"https://api.github.com/users/tendrils/received_events","repos_url":"https://api.github.com/users/tendrils/repos","starred_url":"https://api.github.com/users/tendrils/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tendrils/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/604","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/604","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/604","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/e3729bcacd1e13ea52a2179f42f7107607e638a0","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/604.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/604.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/604/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/604/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/604/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NjEzODExMjY4","merge_commit_sha":"41ee82179dd6308976694ab94c92573280497f92","requested_teams":[{"id":9104021,"node_id":"T_kwDOAF3p4s4AiuqV","name":"CoreOS Buses and WDF","description":"CoreOS Buses and WDF","url":"https://api.github.com/organizations/6154722/team/9104021","slug":"coreos-buses-and-wdf","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/coreos-buses-and-wdf","members_url":"https://api.github.com/organizations/6154722/team/9104021/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9104021/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/604"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/604"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/604"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/604/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/604/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/604/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/e3729bcacd1e13ea52a2179f42f7107607e638a0"}},"head":{"label":"tendrils:master","ref":"master","sha":"e3729bcacd1e13ea52a2179f42f7107607e638a0","repo":{"id":356371139,"node_id":"MDEwOlJlcG9zaXRvcnkzNTYzNzExMzk=","owner":{"login":"tendrils","id":9058315,"node_id":"MDQ6VXNlcjkwNTgzMTU=","avatar_url":"https://avatars.githubusercontent.com/u/9058315?v=4","html_url":"https://github.com/tendrils","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/tendrils","events_url":"https://api.github.com/users/tendrils/events{/privacy}","following_url":"https://api.github.com/users/tendrils/following{/other_user}","followers_url":"https://api.github.com/users/tendrils/followers","gists_url":"https://api.github.com/users/tendrils/gists{/gist_id}","organizations_url":"https://api.github.com/users/tendrils/orgs","received_events_url":"https://api.github.com/users/tendrils/received_events","repos_url":"https://api.github.com/users/tendrils/repos","starred_url":"https://api.github.com/users/tendrils/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tendrils/subscriptions"},"name":"Windows-driver-samples","full_name":"tendrils/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2021-04-09T18:56:36Z","pushed_at":"2025-12-19T01:16:54Z","updated_at":"2025-12-19T01:18:18Z","html_url":"https://github.com/tendrils/Windows-driver-samples","clone_url":"https://github.com/tendrils/Windows-driver-samples.git","git_url":"git://github.com/tendrils/Windows-driver-samples.git","ssh_url":"git@github.com:tendrils/Windows-driver-samples.git","svn_url":"https://github.com/tendrils/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165829,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/tendrils/Windows-driver-samples","archive_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/tendrils/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"tendrils","id":9058315,"node_id":"MDQ6VXNlcjkwNTgzMTU=","avatar_url":"https://avatars.githubusercontent.com/u/9058315?v=4","html_url":"https://github.com/tendrils","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/tendrils","events_url":"https://api.github.com/users/tendrils/events{/privacy}","following_url":"https://api.github.com/users/tendrils/following{/other_user}","followers_url":"https://api.github.com/users/tendrils/followers","gists_url":"https://api.github.com/users/tendrils/gists{/gist_id}","organizations_url":"https://api.github.com/users/tendrils/orgs","received_events_url":"https://api.github.com/users/tendrils/received_events","repos_url":"https://api.github.com/users/tendrils/repos","starred_url":"https://api.github.com/users/tendrils/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tendrils/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"1d89a1513f519f62226f84a3131916ab2fd0c3ef","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":608550441,"number":602,"state":"open","locked":false,"title":"uvcview.c: don't show the console in quiet mode","body":"If quiet mode is set via command line options then don't show the\nconsole. This is useful if the program is called from within another\napplication and don't want to see the annoying flashing console","created_at":"2021-04-04T13:59:50Z","updated_at":"2022-04-20T20:53:16Z","user":{"login":"imacovei","id":6807229,"node_id":"MDQ6VXNlcjY4MDcyMjk=","avatar_url":"https://avatars.githubusercontent.com/u/6807229?v=4","html_url":"https://github.com/imacovei","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/imacovei","events_url":"https://api.github.com/users/imacovei/events{/privacy}","following_url":"https://api.github.com/users/imacovei/following{/other_user}","followers_url":"https://api.github.com/users/imacovei/followers","gists_url":"https://api.github.com/users/imacovei/gists{/gist_id}","organizations_url":"https://api.github.com/users/imacovei/orgs","received_events_url":"https://api.github.com/users/imacovei/received_events","repos_url":"https://api.github.com/users/imacovei/repos","starred_url":"https://api.github.com/users/imacovei/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/imacovei/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/602","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/602","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/602","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/7574267effc38816d9aa086af175965f60a1c9b2","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/602.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/602.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/602/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/602/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/602/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NjA4NTUwNDQx","merge_commit_sha":"9fb1a4a614fbbd94ec09687cb59d0bb130d130ba","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/602"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/602"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/602"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/602/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/602/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/602/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/7574267effc38816d9aa086af175965f60a1c9b2"}},"head":{"label":"imacovei:fix-no-console-if-quiet-mode","ref":"fix-no-console-if-quiet-mode","sha":"7574267effc38816d9aa086af175965f60a1c9b2","repo":{"id":352367843,"node_id":"MDEwOlJlcG9zaXRvcnkzNTIzNjc4NDM=","owner":{"login":"imacovei","id":6807229,"node_id":"MDQ6VXNlcjY4MDcyMjk=","avatar_url":"https://avatars.githubusercontent.com/u/6807229?v=4","html_url":"https://github.com/imacovei","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/imacovei","events_url":"https://api.github.com/users/imacovei/events{/privacy}","following_url":"https://api.github.com/users/imacovei/following{/other_user}","followers_url":"https://api.github.com/users/imacovei/followers","gists_url":"https://api.github.com/users/imacovei/gists{/gist_id}","organizations_url":"https://api.github.com/users/imacovei/orgs","received_events_url":"https://api.github.com/users/imacovei/received_events","repos_url":"https://api.github.com/users/imacovei/repos","starred_url":"https://api.github.com/users/imacovei/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/imacovei/subscriptions"},"name":"Windows-driver-samples","full_name":"imacovei/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2021-03-28T15:37:08Z","pushed_at":"2023-04-10T19:09:53Z","updated_at":"2023-04-10T19:10:42Z","html_url":"https://github.com/imacovei/Windows-driver-samples","clone_url":"https://github.com/imacovei/Windows-driver-samples.git","git_url":"git://github.com/imacovei/Windows-driver-samples.git","ssh_url":"git@github.com:imacovei/Windows-driver-samples.git","svn_url":"https://github.com/imacovei/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":163771,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/imacovei/Windows-driver-samples","archive_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/imacovei/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"imacovei","id":6807229,"node_id":"MDQ6VXNlcjY4MDcyMjk=","avatar_url":"https://avatars.githubusercontent.com/u/6807229?v=4","html_url":"https://github.com/imacovei","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/imacovei","events_url":"https://api.github.com/users/imacovei/events{/privacy}","following_url":"https://api.github.com/users/imacovei/following{/other_user}","followers_url":"https://api.github.com/users/imacovei/followers","gists_url":"https://api.github.com/users/imacovei/gists{/gist_id}","organizations_url":"https://api.github.com/users/imacovei/orgs","received_events_url":"https://api.github.com/users/imacovei/received_events","repos_url":"https://api.github.com/users/imacovei/repos","starred_url":"https://api.github.com/users/imacovei/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/imacovei/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":592442483,"number":587,"state":"open","locked":false,"title":"input/layout: Fix settings application crash when selecting keyboard layout","body":"The first `AdditionalOptions` entry was not taken into account by Visual Studio, but the linker did.\n\nFixes #433.","created_at":"2021-03-13T23:24:34Z","updated_at":"2022-04-20T20:53:16Z","user":{"login":"davidebeatrici","id":5897523,"node_id":"MDQ6VXNlcjU4OTc1MjM=","avatar_url":"https://avatars.githubusercontent.com/u/5897523?v=4","html_url":"https://github.com/davidebeatrici","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/davidebeatrici","events_url":"https://api.github.com/users/davidebeatrici/events{/privacy}","following_url":"https://api.github.com/users/davidebeatrici/following{/other_user}","followers_url":"https://api.github.com/users/davidebeatrici/followers","gists_url":"https://api.github.com/users/davidebeatrici/gists{/gist_id}","organizations_url":"https://api.github.com/users/davidebeatrici/orgs","received_events_url":"https://api.github.com/users/davidebeatrici/received_events","repos_url":"https://api.github.com/users/davidebeatrici/repos","starred_url":"https://api.github.com/users/davidebeatrici/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davidebeatrici/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/587","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/587","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/587","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/0c0db744f902a6b67dd602a48b42f32ddb5e39d0","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/587.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/587.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/587/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/587/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/587/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NTkyNDQyNDgz","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/587"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/587"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/587"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/587/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/587/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/587/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/0c0db744f902a6b67dd602a48b42f32ddb5e39d0"}},"head":{"label":"davidebeatrici:input-layout-crash-fix","ref":"input-layout-crash-fix","sha":"0c0db744f902a6b67dd602a48b42f32ddb5e39d0","repo":{"id":347499852,"node_id":"MDEwOlJlcG9zaXRvcnkzNDc0OTk4NTI=","owner":{"login":"davidebeatrici","id":5897523,"node_id":"MDQ6VXNlcjU4OTc1MjM=","avatar_url":"https://avatars.githubusercontent.com/u/5897523?v=4","html_url":"https://github.com/davidebeatrici","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/davidebeatrici","events_url":"https://api.github.com/users/davidebeatrici/events{/privacy}","following_url":"https://api.github.com/users/davidebeatrici/following{/other_user}","followers_url":"https://api.github.com/users/davidebeatrici/followers","gists_url":"https://api.github.com/users/davidebeatrici/gists{/gist_id}","organizations_url":"https://api.github.com/users/davidebeatrici/orgs","received_events_url":"https://api.github.com/users/davidebeatrici/received_events","repos_url":"https://api.github.com/users/davidebeatrici/repos","starred_url":"https://api.github.com/users/davidebeatrici/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davidebeatrici/subscriptions"},"name":"Windows-driver-samples","full_name":"davidebeatrici/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2021-03-13T23:14:18Z","pushed_at":"2021-03-14T07:14:20Z","updated_at":"2024-01-02T22:22:47Z","html_url":"https://github.com/davidebeatrici/Windows-driver-samples","clone_url":"https://github.com/davidebeatrici/Windows-driver-samples.git","git_url":"git://github.com/davidebeatrici/Windows-driver-samples.git","ssh_url":"git@github.com:davidebeatrici/Windows-driver-samples.git","svn_url":"https://github.com/davidebeatrici/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162967,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples","archive_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/davidebeatrici/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"davidebeatrici","id":5897523,"node_id":"MDQ6VXNlcjU4OTc1MjM=","avatar_url":"https://avatars.githubusercontent.com/u/5897523?v=4","html_url":"https://github.com/davidebeatrici","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/davidebeatrici","events_url":"https://api.github.com/users/davidebeatrici/events{/privacy}","following_url":"https://api.github.com/users/davidebeatrici/following{/other_user}","followers_url":"https://api.github.com/users/davidebeatrici/followers","gists_url":"https://api.github.com/users/davidebeatrici/gists{/gist_id}","organizations_url":"https://api.github.com/users/davidebeatrici/orgs","received_events_url":"https://api.github.com/users/davidebeatrici/received_events","repos_url":"https://api.github.com/users/davidebeatrici/repos","starred_url":"https://api.github.com/users/davidebeatrici/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davidebeatrici/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":563836154,"number":575,"state":"open","locked":false,"title":"Update main.cpp","body":"No use of `std::vector` seen","created_at":"2021-01-29T08:53:47Z","updated_at":"2022-04-20T20:53:16Z","user":{"login":"raikrahul","id":1218011,"node_id":"MDQ6VXNlcjEyMTgwMTE=","avatar_url":"https://avatars.githubusercontent.com/u/1218011?v=4","html_url":"https://github.com/raikrahul","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/raikrahul","events_url":"https://api.github.com/users/raikrahul/events{/privacy}","following_url":"https://api.github.com/users/raikrahul/following{/other_user}","followers_url":"https://api.github.com/users/raikrahul/followers","gists_url":"https://api.github.com/users/raikrahul/gists{/gist_id}","organizations_url":"https://api.github.com/users/raikrahul/orgs","received_events_url":"https://api.github.com/users/raikrahul/received_events","repos_url":"https://api.github.com/users/raikrahul/repos","starred_url":"https://api.github.com/users/raikrahul/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raikrahul/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/575","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/575","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/575","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/e9d0ff10b802b6676606669bf53814f19d998c7e","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/575.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/575.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/575/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/575/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/575/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NTYzODM2MTU0","merge_commit_sha":"d6d1391619e5f71451d735044dc0beee036e3c73","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/575"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/575"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/575"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/575/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/575/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/575/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/e9d0ff10b802b6676606669bf53814f19d998c7e"}},"head":{"label":"raikrahul:patch-1","ref":"patch-1","sha":"e9d0ff10b802b6676606669bf53814f19d998c7e","repo":{"id":334087762,"node_id":"MDEwOlJlcG9zaXRvcnkzMzQwODc3NjI=","owner":{"login":"raikrahul","id":1218011,"node_id":"MDQ6VXNlcjEyMTgwMTE=","avatar_url":"https://avatars.githubusercontent.com/u/1218011?v=4","html_url":"https://github.com/raikrahul","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/raikrahul","events_url":"https://api.github.com/users/raikrahul/events{/privacy}","following_url":"https://api.github.com/users/raikrahul/following{/other_user}","followers_url":"https://api.github.com/users/raikrahul/followers","gists_url":"https://api.github.com/users/raikrahul/gists{/gist_id}","organizations_url":"https://api.github.com/users/raikrahul/orgs","received_events_url":"https://api.github.com/users/raikrahul/received_events","repos_url":"https://api.github.com/users/raikrahul/repos","starred_url":"https://api.github.com/users/raikrahul/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raikrahul/subscriptions"},"name":"Windows-driver-samples","full_name":"raikrahul/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2021-01-29T08:51:03Z","pushed_at":"2021-01-29T08:53:36Z","updated_at":"2021-01-29T08:51:05Z","html_url":"https://github.com/raikrahul/Windows-driver-samples","clone_url":"https://github.com/raikrahul/Windows-driver-samples.git","git_url":"git://github.com/raikrahul/Windows-driver-samples.git","ssh_url":"git@github.com:raikrahul/Windows-driver-samples.git","svn_url":"https://github.com/raikrahul/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162941,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/raikrahul/Windows-driver-samples","archive_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/raikrahul/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"raikrahul","id":1218011,"node_id":"MDQ6VXNlcjEyMTgwMTE=","avatar_url":"https://avatars.githubusercontent.com/u/1218011?v=4","html_url":"https://github.com/raikrahul","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/raikrahul","events_url":"https://api.github.com/users/raikrahul/events{/privacy}","following_url":"https://api.github.com/users/raikrahul/following{/other_user}","followers_url":"https://api.github.com/users/raikrahul/followers","gists_url":"https://api.github.com/users/raikrahul/gists{/gist_id}","organizations_url":"https://api.github.com/users/raikrahul/orgs","received_events_url":"https://api.github.com/users/raikrahul/received_events","repos_url":"https://api.github.com/users/raikrahul/repos","starred_url":"https://api.github.com/users/raikrahul/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raikrahul/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":485108129,"number":538,"state":"open","locked":false,"title":"Fix WFPSampler build for SDK 10.0.19041.0","body":"- api-ms-win-net-isolation-l1-1-0.lib got removed\n- IpDiscardIPSNPIDrop is now IpDiscardIpsnpiClientDrop\n- Typo in InX file","created_at":"2020-09-11T14:02:44Z","updated_at":"2022-04-28T07:29:47Z","user":{"login":"darinkes","id":637743,"node_id":"MDQ6VXNlcjYzNzc0Mw==","avatar_url":"https://avatars.githubusercontent.com/u/637743?v=4","html_url":"https://github.com/darinkes","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/darinkes","events_url":"https://api.github.com/users/darinkes/events{/privacy}","following_url":"https://api.github.com/users/darinkes/following{/other_user}","followers_url":"https://api.github.com/users/darinkes/followers","gists_url":"https://api.github.com/users/darinkes/gists{/gist_id}","organizations_url":"https://api.github.com/users/darinkes/orgs","received_events_url":"https://api.github.com/users/darinkes/received_events","repos_url":"https://api.github.com/users/darinkes/repos","starred_url":"https://api.github.com/users/darinkes/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darinkes/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/538","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/538","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/538","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/5d275dea2654ea602562be7c5b021cd851e6eb71","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/538.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/538.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/538/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/538/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/538/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NDg1MTA4MTI5","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/538"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/538"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/538"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/538/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/538/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/538/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/5d275dea2654ea602562be7c5b021cd851e6eb71"}},"head":{"label":"darinkes:master","ref":"master","sha":"5d275dea2654ea602562be7c5b021cd851e6eb71","repo":{"id":294710281,"node_id":"MDEwOlJlcG9zaXRvcnkyOTQ3MTAyODE=","owner":{"login":"darinkes","id":637743,"node_id":"MDQ6VXNlcjYzNzc0Mw==","avatar_url":"https://avatars.githubusercontent.com/u/637743?v=4","html_url":"https://github.com/darinkes","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/darinkes","events_url":"https://api.github.com/users/darinkes/events{/privacy}","following_url":"https://api.github.com/users/darinkes/following{/other_user}","followers_url":"https://api.github.com/users/darinkes/followers","gists_url":"https://api.github.com/users/darinkes/gists{/gist_id}","organizations_url":"https://api.github.com/users/darinkes/orgs","received_events_url":"https://api.github.com/users/darinkes/received_events","repos_url":"https://api.github.com/users/darinkes/repos","starred_url":"https://api.github.com/users/darinkes/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darinkes/subscriptions"},"name":"Windows-driver-samples","full_name":"darinkes/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2020-09-11T13:59:46Z","pushed_at":"2020-09-11T14:01:01Z","updated_at":"2020-09-11T14:01:27Z","html_url":"https://github.com/darinkes/Windows-driver-samples","clone_url":"https://github.com/darinkes/Windows-driver-samples.git","git_url":"git://github.com/darinkes/Windows-driver-samples.git","ssh_url":"git@github.com:darinkes/Windows-driver-samples.git","svn_url":"https://github.com/darinkes/Windows-driver-samples","language":"C","fork":true,"forks_count":1,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162918,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/darinkes/Windows-driver-samples","archive_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/darinkes/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"darinkes","id":637743,"node_id":"MDQ6VXNlcjYzNzc0Mw==","avatar_url":"https://avatars.githubusercontent.com/u/637743?v=4","html_url":"https://github.com/darinkes","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/darinkes","events_url":"https://api.github.com/users/darinkes/events{/privacy}","following_url":"https://api.github.com/users/darinkes/following{/other_user}","followers_url":"https://api.github.com/users/darinkes/followers","gists_url":"https://api.github.com/users/darinkes/gists{/gist_id}","organizations_url":"https://api.github.com/users/darinkes/orgs","received_events_url":"https://api.github.com/users/darinkes/received_events","repos_url":"https://api.github.com/users/darinkes/repos","starred_url":"https://api.github.com/users/darinkes/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darinkes/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":446772156,"number":528,"state":"open","locked":false,"title":"modify DelReg directive to refer correct section","body":"The DefaultUninstall section's DelReg directive was referring to a non-existent section (WFPCalloutClassReg) most likely due to typo. As a result a build error occurs.\nFixed the section name to an existing one (WFPCalloutsClassReg). Confirmed fix is effective by observing a successful build.","created_at":"2020-07-09T10:32:59Z","updated_at":"2022-04-20T20:53:16Z","user":{"login":"jesweare","id":23375232,"node_id":"MDQ6VXNlcjIzMzc1MjMy","avatar_url":"https://avatars.githubusercontent.com/u/23375232?v=4","html_url":"https://github.com/jesweare","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jesweare","events_url":"https://api.github.com/users/jesweare/events{/privacy}","following_url":"https://api.github.com/users/jesweare/following{/other_user}","followers_url":"https://api.github.com/users/jesweare/followers","gists_url":"https://api.github.com/users/jesweare/gists{/gist_id}","organizations_url":"https://api.github.com/users/jesweare/orgs","received_events_url":"https://api.github.com/users/jesweare/received_events","repos_url":"https://api.github.com/users/jesweare/repos","starred_url":"https://api.github.com/users/jesweare/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jesweare/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/528","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/528","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/528","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/55a62b9444e41f5d521f6bbcffe15ed17bc22123","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/528.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/528.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/528/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/528/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/528/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NDQ2NzcyMTU2","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/528"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/528"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/528"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/528/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/528/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/528/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/55a62b9444e41f5d521f6bbcffe15ed17bc22123"}},"head":{"label":"jesweare:patch-1","ref":"patch-1","sha":"55a62b9444e41f5d521f6bbcffe15ed17bc22123","repo":{"id":278334774,"node_id":"MDEwOlJlcG9zaXRvcnkyNzgzMzQ3NzQ=","owner":{"login":"jesweare","id":23375232,"node_id":"MDQ6VXNlcjIzMzc1MjMy","avatar_url":"https://avatars.githubusercontent.com/u/23375232?v=4","html_url":"https://github.com/jesweare","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jesweare","events_url":"https://api.github.com/users/jesweare/events{/privacy}","following_url":"https://api.github.com/users/jesweare/following{/other_user}","followers_url":"https://api.github.com/users/jesweare/followers","gists_url":"https://api.github.com/users/jesweare/gists{/gist_id}","organizations_url":"https://api.github.com/users/jesweare/orgs","received_events_url":"https://api.github.com/users/jesweare/received_events","repos_url":"https://api.github.com/users/jesweare/repos","starred_url":"https://api.github.com/users/jesweare/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jesweare/subscriptions"},"name":"Windows-driver-samples","full_name":"jesweare/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2020-07-09T10:31:51Z","pushed_at":"2020-11-25T05:18:24Z","updated_at":"2020-11-25T05:18:44Z","html_url":"https://github.com/jesweare/Windows-driver-samples","clone_url":"https://github.com/jesweare/Windows-driver-samples.git","git_url":"git://github.com/jesweare/Windows-driver-samples.git","ssh_url":"git@github.com:jesweare/Windows-driver-samples.git","svn_url":"https://github.com/jesweare/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162926,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/jesweare/Windows-driver-samples","archive_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/jesweare/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"jesweare","id":23375232,"node_id":"MDQ6VXNlcjIzMzc1MjMy","avatar_url":"https://avatars.githubusercontent.com/u/23375232?v=4","html_url":"https://github.com/jesweare","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jesweare","events_url":"https://api.github.com/users/jesweare/events{/privacy}","following_url":"https://api.github.com/users/jesweare/following{/other_user}","followers_url":"https://api.github.com/users/jesweare/followers","gists_url":"https://api.github.com/users/jesweare/gists{/gist_id}","organizations_url":"https://api.github.com/users/jesweare/orgs","received_events_url":"https://api.github.com/users/jesweare/received_events","repos_url":"https://api.github.com/users/jesweare/repos","starred_url":"https://api.github.com/users/jesweare/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jesweare/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":437480850,"number":525,"state":"open","locked":false,"title":"NetVMini: Don't use the same values for statistics flags","body":"Their values are different.\n\n```c\n#define NDIS60 1\n\n#include \n\nC_ASSERT(0x003F87FF == (\n\tNDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_RCV |\n\tNDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_RCV |\n\tNDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_RCV |\n\tNDIS_STATISTICS_FLAGS_VALID_BYTES_RCV |\n\tNDIS_STATISTICS_FLAGS_VALID_RCV_DISCARDS |\n\tNDIS_STATISTICS_FLAGS_VALID_RCV_ERROR |\n\tNDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_XMIT |\n\tNDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_XMIT |\n\tNDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_XMIT |\n\tNDIS_STATISTICS_FLAGS_VALID_BYTES_XMIT |\n\tNDIS_STATISTICS_FLAGS_VALID_XMIT_ERROR |\n\tNDIS_STATISTICS_FLAGS_VALID_XMIT_DISCARDS |\n\tNDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_RCV |\n\tNDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_RCV |\n\tNDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_RCV |\n\tNDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_XMIT |\n\tNDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_XMIT |\n\tNDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_XMIT));\n\nC_ASSERT(0x0839FFEC == (\n\tNDIS_STATISTICS_DIRECTED_FRAMES_RCV_SUPPORTED | \\\n\tNDIS_STATISTICS_MULTICAST_FRAMES_RCV_SUPPORTED | \\\n\tNDIS_STATISTICS_BROADCAST_FRAMES_RCV_SUPPORTED | \\\n\tNDIS_STATISTICS_BYTES_RCV_SUPPORTED | \\\n\tNDIS_STATISTICS_RCV_DISCARDS_SUPPORTED | \\\n\tNDIS_STATISTICS_RCV_ERROR_SUPPORTED | \\\n\tNDIS_STATISTICS_DIRECTED_FRAMES_XMIT_SUPPORTED | \\\n\tNDIS_STATISTICS_MULTICAST_FRAMES_XMIT_SUPPORTED | \\\n\tNDIS_STATISTICS_BROADCAST_FRAMES_XMIT_SUPPORTED | \\\n\tNDIS_STATISTICS_BYTES_XMIT_SUPPORTED | \\\n\tNDIS_STATISTICS_XMIT_ERROR_SUPPORTED | \\\n\tNDIS_STATISTICS_XMIT_DISCARDS_SUPPORTED | \\\n\tNDIS_STATISTICS_DIRECTED_BYTES_RCV_SUPPORTED | \\\n\tNDIS_STATISTICS_MULTICAST_BYTES_RCV_SUPPORTED | \\\n\tNDIS_STATISTICS_BROADCAST_BYTES_RCV_SUPPORTED | \\\n\tNDIS_STATISTICS_DIRECTED_BYTES_XMIT_SUPPORTED | \\\n\tNDIS_STATISTICS_MULTICAST_BYTES_XMIT_SUPPORTED | \\\n\tNDIS_STATISTICS_BROADCAST_BYTES_XMIT_SUPPORTED));\n```","created_at":"2020-06-21T01:14:01Z","updated_at":"2022-04-20T20:53:16Z","user":{"login":"nxtn","id":45985406,"node_id":"MDQ6VXNlcjQ1OTg1NDA2","avatar_url":"https://avatars.githubusercontent.com/u/45985406?v=4","html_url":"https://github.com/nxtn","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/nxtn","events_url":"https://api.github.com/users/nxtn/events{/privacy}","following_url":"https://api.github.com/users/nxtn/following{/other_user}","followers_url":"https://api.github.com/users/nxtn/followers","gists_url":"https://api.github.com/users/nxtn/gists{/gist_id}","organizations_url":"https://api.github.com/users/nxtn/orgs","received_events_url":"https://api.github.com/users/nxtn/received_events","repos_url":"https://api.github.com/users/nxtn/repos","starred_url":"https://api.github.com/users/nxtn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nxtn/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/525","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/525","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/525","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ebba04c683a2afcd043bd37f86c774849650ffdc","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/525.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/525.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/525/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/525/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/525/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NDM3NDgwODUw","merge_commit_sha":"9f2ee58e1e65e9100f0f119f59bd2f07a7842125","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/525"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/525"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/525"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/525/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/525/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/525/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ebba04c683a2afcd043bd37f86c774849650ffdc"}},"head":{"label":"nxtn:stats","ref":"stats","sha":"ebba04c683a2afcd043bd37f86c774849650ffdc","repo":{"id":273811423,"node_id":"MDEwOlJlcG9zaXRvcnkyNzM4MTE0MjM=","owner":{"login":"nxtn","id":45985406,"node_id":"MDQ6VXNlcjQ1OTg1NDA2","avatar_url":"https://avatars.githubusercontent.com/u/45985406?v=4","html_url":"https://github.com/nxtn","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/nxtn","events_url":"https://api.github.com/users/nxtn/events{/privacy}","following_url":"https://api.github.com/users/nxtn/following{/other_user}","followers_url":"https://api.github.com/users/nxtn/followers","gists_url":"https://api.github.com/users/nxtn/gists{/gist_id}","organizations_url":"https://api.github.com/users/nxtn/orgs","received_events_url":"https://api.github.com/users/nxtn/received_events","repos_url":"https://api.github.com/users/nxtn/repos","starred_url":"https://api.github.com/users/nxtn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nxtn/subscriptions"},"name":"Windows-driver-samples","full_name":"nxtn/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2020-06-21T01:11:53Z","pushed_at":"2020-06-21T01:12:51Z","updated_at":"2020-06-21T01:11:55Z","html_url":"https://github.com/nxtn/Windows-driver-samples","clone_url":"https://github.com/nxtn/Windows-driver-samples.git","git_url":"git://github.com/nxtn/Windows-driver-samples.git","ssh_url":"git@github.com:nxtn/Windows-driver-samples.git","svn_url":"https://github.com/nxtn/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162923,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/nxtn/Windows-driver-samples","archive_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/nxtn/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"nxtn","id":45985406,"node_id":"MDQ6VXNlcjQ1OTg1NDA2","avatar_url":"https://avatars.githubusercontent.com/u/45985406?v=4","html_url":"https://github.com/nxtn","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/nxtn","events_url":"https://api.github.com/users/nxtn/events{/privacy}","following_url":"https://api.github.com/users/nxtn/following{/other_user}","followers_url":"https://api.github.com/users/nxtn/followers","gists_url":"https://api.github.com/users/nxtn/gists{/gist_id}","organizations_url":"https://api.github.com/users/nxtn/orgs","received_events_url":"https://api.github.com/users/nxtn/received_events","repos_url":"https://api.github.com/users/nxtn/repos","starred_url":"https://api.github.com/users/nxtn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nxtn/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":437213716,"number":524,"state":"open","locked":false,"title":"toastDrv/kmdf/filter/sideband: Ensure that queue event callbacks are run at PASSIVE_LEVEL","body":"According to https://docs.microsoft.com/en-us/windows-hardware/drivers/ddi/wdfio/nc-wdfio-evt_wdf_io_queue_io_device_control, an `EVT_WDF_IO_QUEUE_IO_DEVICE_CONTROL` callback function may be called at any IRQL <= DISPATCH_LEVEL. It states especially:\n\n> The EvtIoDeviceControl callback function can be called at IRQL <= DISPATCH_LEVEL, unless the ExecutionLevel member of the device or driver's WDF_OBJECT_ATTRIBUTES structure is set to WdfExecutionLevelPassive.\n\nNot doing that is among the three most common mistakes when developing KMDF drivers according to https://www.osr.com/nt-insider/2015-issue3/common-kmdf-errors/\n\nHowever, the toastDrv/kmdf/filter/sideband example currently doesn't specify any ExecutionLevel.\nInstead, it just silences the related warning.\n\nThis PR adds the initialization of a WDF_OBJECT_ATTRIBUTES structure with ExecutionLevel set to WdfExecutionLevelPassive, which is then passed to WdfIoQueueCreate.\n\nIf this change is fine, the same fix should be applied to other sample drivers as well.\nIf WdfExecutionLevelPassive is deterministically not needed or even makes things worse, I would like to hear an explanation and have all related documentation adjusted. Currenlty, it feels like not using WdfExecutionLevelPassive is a serious mistake.","created_at":"2020-06-19T17:11:45Z","updated_at":"2022-04-20T20:53:16Z","user":{"login":"ColinFinck","id":8110912,"node_id":"MDQ6VXNlcjgxMTA5MTI=","avatar_url":"https://avatars.githubusercontent.com/u/8110912?v=4","html_url":"https://github.com/ColinFinck","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/ColinFinck","events_url":"https://api.github.com/users/ColinFinck/events{/privacy}","following_url":"https://api.github.com/users/ColinFinck/following{/other_user}","followers_url":"https://api.github.com/users/ColinFinck/followers","gists_url":"https://api.github.com/users/ColinFinck/gists{/gist_id}","organizations_url":"https://api.github.com/users/ColinFinck/orgs","received_events_url":"https://api.github.com/users/ColinFinck/received_events","repos_url":"https://api.github.com/users/ColinFinck/repos","starred_url":"https://api.github.com/users/ColinFinck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ColinFinck/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/524","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/524","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/524","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/230d084986700d607b779ea19e09a9bfc04417bf","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/524.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/524.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/524/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/524/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/524/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NDM3MjEzNzE2","merge_commit_sha":"e99fb7e13dd76d0fda0e19b36312964d4dd6033e","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/524"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/524"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/524"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/524/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/524/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/524/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/230d084986700d607b779ea19e09a9bfc04417bf"}},"head":{"label":"ColinFinck:toaster-sideband-filter-fix-executionlevel","ref":"toaster-sideband-filter-fix-executionlevel","sha":"230d084986700d607b779ea19e09a9bfc04417bf","repo":{"id":273543579,"node_id":"MDEwOlJlcG9zaXRvcnkyNzM1NDM1Nzk=","owner":{"login":"ColinFinck","id":8110912,"node_id":"MDQ6VXNlcjgxMTA5MTI=","avatar_url":"https://avatars.githubusercontent.com/u/8110912?v=4","html_url":"https://github.com/ColinFinck","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/ColinFinck","events_url":"https://api.github.com/users/ColinFinck/events{/privacy}","following_url":"https://api.github.com/users/ColinFinck/following{/other_user}","followers_url":"https://api.github.com/users/ColinFinck/followers","gists_url":"https://api.github.com/users/ColinFinck/gists{/gist_id}","organizations_url":"https://api.github.com/users/ColinFinck/orgs","received_events_url":"https://api.github.com/users/ColinFinck/received_events","repos_url":"https://api.github.com/users/ColinFinck/repos","starred_url":"https://api.github.com/users/ColinFinck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ColinFinck/subscriptions"},"name":"Windows-driver-samples","full_name":"ColinFinck/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2020-06-19T16:48:48Z","pushed_at":"2020-06-19T16:57:57Z","updated_at":"2020-06-19T16:48:50Z","html_url":"https://github.com/ColinFinck/Windows-driver-samples","clone_url":"https://github.com/ColinFinck/Windows-driver-samples.git","git_url":"git://github.com/ColinFinck/Windows-driver-samples.git","ssh_url":"git@github.com:ColinFinck/Windows-driver-samples.git","svn_url":"https://github.com/ColinFinck/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162970,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples","archive_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/ColinFinck/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"ColinFinck","id":8110912,"node_id":"MDQ6VXNlcjgxMTA5MTI=","avatar_url":"https://avatars.githubusercontent.com/u/8110912?v=4","html_url":"https://github.com/ColinFinck","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/ColinFinck","events_url":"https://api.github.com/users/ColinFinck/events{/privacy}","following_url":"https://api.github.com/users/ColinFinck/following{/other_user}","followers_url":"https://api.github.com/users/ColinFinck/followers","gists_url":"https://api.github.com/users/ColinFinck/gists{/gist_id}","organizations_url":"https://api.github.com/users/ColinFinck/orgs","received_events_url":"https://api.github.com/users/ColinFinck/received_events","repos_url":"https://api.github.com/users/ColinFinck/repos","starred_url":"https://api.github.com/users/ColinFinck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ColinFinck/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":435754688,"number":521,"state":"open","locked":false,"title":"FastFAT: Add 'static' to 'strcsup.c' functions","body":"Local functions only.","created_at":"2020-06-17T10:25:00Z","updated_at":"2024-05-23T19:17:02Z","user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/521","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/521","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/521","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ba690381927c7d14bdf31410d1db707d54699a3d","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/521.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/521.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/521/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/521/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/521/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NDM1NzU0Njg4","merge_commit_sha":"58d21228f75eaca68eb3f2740550178ef9399e90","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/521"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/521"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/521"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/521/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/521/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/521/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ba690381927c7d14bdf31410d1db707d54699a3d"}},"head":{"label":"SergeGautherie:SergeGautherie/PRonly_fastfat-strucsup_add-static","ref":"SergeGautherie/PRonly_fastfat-strucsup_add-static","sha":"ba690381927c7d14bdf31410d1db707d54699a3d","repo":{"id":190296760,"node_id":"MDEwOlJlcG9zaXRvcnkxOTAyOTY3NjA=","owner":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"name":"Windows-driver-samples","full_name":"SergeGautherie/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2019-06-05T00:06:03Z","pushed_at":"2025-06-29T16:26:32Z","updated_at":"2023-08-24T10:48:04Z","html_url":"https://github.com/SergeGautherie/Windows-driver-samples","clone_url":"https://github.com/SergeGautherie/Windows-driver-samples.git","git_url":"git://github.com/SergeGautherie/Windows-driver-samples.git","ssh_url":"git@github.com:SergeGautherie/Windows-driver-samples.git","svn_url":"https://github.com/SergeGautherie/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165675,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples","archive_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":433400302,"number":518,"state":"open","locked":false,"title":"Encapsulate Power relation changes within SYSVAD_USB_SIDEBAND preproc…","body":"…essor flag.","created_at":"2020-06-12T00:24:22Z","updated_at":"2022-04-20T20:53:16Z","user":{"login":"girishpattabiraman","id":25185289,"node_id":"MDQ6VXNlcjI1MTg1Mjg5","avatar_url":"https://avatars.githubusercontent.com/u/25185289?v=4","html_url":"https://github.com/girishpattabiraman","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/girishpattabiraman","events_url":"https://api.github.com/users/girishpattabiraman/events{/privacy}","following_url":"https://api.github.com/users/girishpattabiraman/following{/other_user}","followers_url":"https://api.github.com/users/girishpattabiraman/followers","gists_url":"https://api.github.com/users/girishpattabiraman/gists{/gist_id}","organizations_url":"https://api.github.com/users/girishpattabiraman/orgs","received_events_url":"https://api.github.com/users/girishpattabiraman/received_events","repos_url":"https://api.github.com/users/girishpattabiraman/repos","starred_url":"https://api.github.com/users/girishpattabiraman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/girishpattabiraman/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/518","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/518","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/518","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/95d7bd3a57d1ff88351e1c5a55847d65c86d5686","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/518.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/518.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/518/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/518/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/518/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NDMzNDAwMzAy","merge_commit_sha":"7c140affc821514eb1c4284969f5add5837f567a","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/518"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/518"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/518"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/518/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/518/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/518/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/95d7bd3a57d1ff88351e1c5a55847d65c86d5686"}},"head":{"label":"girishpattabiraman:master","ref":"master","sha":"95d7bd3a57d1ff88351e1c5a55847d65c86d5686","repo":{"id":271671597,"node_id":"MDEwOlJlcG9zaXRvcnkyNzE2NzE1OTc=","owner":{"login":"girishpattabiraman","id":25185289,"node_id":"MDQ6VXNlcjI1MTg1Mjg5","avatar_url":"https://avatars.githubusercontent.com/u/25185289?v=4","html_url":"https://github.com/girishpattabiraman","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/girishpattabiraman","events_url":"https://api.github.com/users/girishpattabiraman/events{/privacy}","following_url":"https://api.github.com/users/girishpattabiraman/following{/other_user}","followers_url":"https://api.github.com/users/girishpattabiraman/followers","gists_url":"https://api.github.com/users/girishpattabiraman/gists{/gist_id}","organizations_url":"https://api.github.com/users/girishpattabiraman/orgs","received_events_url":"https://api.github.com/users/girishpattabiraman/received_events","repos_url":"https://api.github.com/users/girishpattabiraman/repos","starred_url":"https://api.github.com/users/girishpattabiraman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/girishpattabiraman/subscriptions"},"name":"Windows-driver-samples","full_name":"girishpattabiraman/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2020-06-12T00:15:38Z","pushed_at":"2021-06-03T18:06:34Z","updated_at":"2021-06-03T18:07:04Z","html_url":"https://github.com/girishpattabiraman/Windows-driver-samples","clone_url":"https://github.com/girishpattabiraman/Windows-driver-samples.git","git_url":"git://github.com/girishpattabiraman/Windows-driver-samples.git","ssh_url":"git@github.com:girishpattabiraman/Windows-driver-samples.git","svn_url":"https://github.com/girishpattabiraman/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":163269,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples","archive_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/girishpattabiraman/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"girishpattabiraman","id":25185289,"node_id":"MDQ6VXNlcjI1MTg1Mjg5","avatar_url":"https://avatars.githubusercontent.com/u/25185289?v=4","html_url":"https://github.com/girishpattabiraman","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/girishpattabiraman","events_url":"https://api.github.com/users/girishpattabiraman/events{/privacy}","following_url":"https://api.github.com/users/girishpattabiraman/following{/other_user}","followers_url":"https://api.github.com/users/girishpattabiraman/followers","gists_url":"https://api.github.com/users/girishpattabiraman/gists{/gist_id}","organizations_url":"https://api.github.com/users/girishpattabiraman/orgs","received_events_url":"https://api.github.com/users/girishpattabiraman/received_events","repos_url":"https://api.github.com/users/girishpattabiraman/repos","starred_url":"https://api.github.com/users/girishpattabiraman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/girishpattabiraman/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"68929f177a2a0ad718b0bb5c2d7fd210e6076c7b","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":396471977,"number":475,"state":"open","locked":false,"title":"wsksmple: Use ExAllocatePoolZero instead of ExAllocatePoolWithTag","body":"","created_at":"2020-03-31T17:09:39Z","updated_at":"2022-04-20T20:53:16Z","user":{"login":"nigriMSFT","id":58704857,"node_id":"MDQ6VXNlcjU4NzA0ODU3","avatar_url":"https://avatars.githubusercontent.com/u/58704857?v=4","html_url":"https://github.com/nigriMSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/nigriMSFT","events_url":"https://api.github.com/users/nigriMSFT/events{/privacy}","following_url":"https://api.github.com/users/nigriMSFT/following{/other_user}","followers_url":"https://api.github.com/users/nigriMSFT/followers","gists_url":"https://api.github.com/users/nigriMSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/nigriMSFT/orgs","received_events_url":"https://api.github.com/users/nigriMSFT/received_events","repos_url":"https://api.github.com/users/nigriMSFT/repos","starred_url":"https://api.github.com/users/nigriMSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nigriMSFT/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/475","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/475","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/475","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ae2d24aeeb605a20ca2fd3da4f2d8ec9a2da2c62","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/475.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/475.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/475/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/475/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/475/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0Mzk2NDcxOTc3","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/475"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/475"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/475"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/475/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/475/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/475/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ae2d24aeeb605a20ca2fd3da4f2d8ec9a2da2c62"}},"head":{"label":"nigriMSFT:master","ref":"master","sha":"ae2d24aeeb605a20ca2fd3da4f2d8ec9a2da2c62","repo":{"id":251478273,"node_id":"MDEwOlJlcG9zaXRvcnkyNTE0NzgyNzM=","owner":{"login":"nigriMSFT","id":58704857,"node_id":"MDQ6VXNlcjU4NzA0ODU3","avatar_url":"https://avatars.githubusercontent.com/u/58704857?v=4","html_url":"https://github.com/nigriMSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/nigriMSFT","events_url":"https://api.github.com/users/nigriMSFT/events{/privacy}","following_url":"https://api.github.com/users/nigriMSFT/following{/other_user}","followers_url":"https://api.github.com/users/nigriMSFT/followers","gists_url":"https://api.github.com/users/nigriMSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/nigriMSFT/orgs","received_events_url":"https://api.github.com/users/nigriMSFT/received_events","repos_url":"https://api.github.com/users/nigriMSFT/repos","starred_url":"https://api.github.com/users/nigriMSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nigriMSFT/subscriptions"},"name":"Windows-driver-samples","full_name":"nigriMSFT/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2020-03-31T02:16:33Z","pushed_at":"2020-03-31T02:18:40Z","updated_at":"2020-03-31T02:19:04Z","html_url":"https://github.com/nigriMSFT/Windows-driver-samples","clone_url":"https://github.com/nigriMSFT/Windows-driver-samples.git","git_url":"git://github.com/nigriMSFT/Windows-driver-samples.git","ssh_url":"git@github.com:nigriMSFT/Windows-driver-samples.git","svn_url":"https://github.com/nigriMSFT/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162741,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples","archive_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/nigriMSFT/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"nigriMSFT","id":58704857,"node_id":"MDQ6VXNlcjU4NzA0ODU3","avatar_url":"https://avatars.githubusercontent.com/u/58704857?v=4","html_url":"https://github.com/nigriMSFT","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/nigriMSFT","events_url":"https://api.github.com/users/nigriMSFT/events{/privacy}","following_url":"https://api.github.com/users/nigriMSFT/following{/other_user}","followers_url":"https://api.github.com/users/nigriMSFT/followers","gists_url":"https://api.github.com/users/nigriMSFT/gists{/gist_id}","organizations_url":"https://api.github.com/users/nigriMSFT/orgs","received_events_url":"https://api.github.com/users/nigriMSFT/received_events","repos_url":"https://api.github.com/users/nigriMSFT/repos","starred_url":"https://api.github.com/users/nigriMSFT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nigriMSFT/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":378835692,"number":460,"state":"open","locked":false,"title":"SFloppy: Fool-proof 'NUMBER_OF_DRIVE_MEDIA_COMBINATIONS'","body":"* Add parentheses.\n* Use name instead of type.","created_at":"2020-02-24T06:53:58Z","updated_at":"2022-04-20T20:53:16Z","user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/460","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/460","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/460","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/7643fc58f777a50b9d5b94dbfe71f86c400f12ec","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/460.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/460.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/460/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/460/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/460/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0Mzc4ODM1Njky","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/460"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/460"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/460"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/460/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/460/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/460/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/7643fc58f777a50b9d5b94dbfe71f86c400f12ec"}},"head":{"label":"SergeGautherie:SergeGautherie/PRonly_SFloppy_foolproof-NUMBER_OF_DRIVE_MEDIA_COMBINATIONS","ref":"SergeGautherie/PRonly_SFloppy_foolproof-NUMBER_OF_DRIVE_MEDIA_COMBINATIONS","sha":"7643fc58f777a50b9d5b94dbfe71f86c400f12ec","repo":{"id":190296760,"node_id":"MDEwOlJlcG9zaXRvcnkxOTAyOTY3NjA=","owner":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"name":"Windows-driver-samples","full_name":"SergeGautherie/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2019-06-05T00:06:03Z","pushed_at":"2025-06-29T16:26:32Z","updated_at":"2023-08-24T10:48:04Z","html_url":"https://github.com/SergeGautherie/Windows-driver-samples","clone_url":"https://github.com/SergeGautherie/Windows-driver-samples.git","git_url":"git://github.com/SergeGautherie/Windows-driver-samples.git","ssh_url":"git@github.com:SergeGautherie/Windows-driver-samples.git","svn_url":"https://github.com/SergeGautherie/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165675,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples","archive_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":365641979,"number":454,"state":"open","locked":false,"title":"Fix build failed","body":"I found that the kcs sample failed to compile because it lacks the Pre-Build Event to generate necessary files and use the undefined functions.","created_at":"2020-01-22T03:15:22Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"o60816","id":8295659,"node_id":"MDQ6VXNlcjgyOTU2NTk=","avatar_url":"https://avatars.githubusercontent.com/u/8295659?v=4","html_url":"https://github.com/o60816","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/o60816","events_url":"https://api.github.com/users/o60816/events{/privacy}","following_url":"https://api.github.com/users/o60816/following{/other_user}","followers_url":"https://api.github.com/users/o60816/followers","gists_url":"https://api.github.com/users/o60816/gists{/gist_id}","organizations_url":"https://api.github.com/users/o60816/orgs","received_events_url":"https://api.github.com/users/o60816/received_events","repos_url":"https://api.github.com/users/o60816/repos","starred_url":"https://api.github.com/users/o60816/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/o60816/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/454","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/454","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/454","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/82def9f3faf7a7195a0052e25af65306e51d3889","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/454.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/454.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/454/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/454/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/454/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MzY1NjQxOTc5","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/454"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/454"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/454"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/454/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/454/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/454/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/82def9f3faf7a7195a0052e25af65306e51d3889"}},"head":{"label":"o60816:fix-build-failed","ref":"fix-build-failed","sha":"82def9f3faf7a7195a0052e25af65306e51d3889","repo":{"id":235485719,"node_id":"MDEwOlJlcG9zaXRvcnkyMzU0ODU3MTk=","owner":{"login":"o60816","id":8295659,"node_id":"MDQ6VXNlcjgyOTU2NTk=","avatar_url":"https://avatars.githubusercontent.com/u/8295659?v=4","html_url":"https://github.com/o60816","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/o60816","events_url":"https://api.github.com/users/o60816/events{/privacy}","following_url":"https://api.github.com/users/o60816/following{/other_user}","followers_url":"https://api.github.com/users/o60816/followers","gists_url":"https://api.github.com/users/o60816/gists{/gist_id}","organizations_url":"https://api.github.com/users/o60816/orgs","received_events_url":"https://api.github.com/users/o60816/received_events","repos_url":"https://api.github.com/users/o60816/repos","starred_url":"https://api.github.com/users/o60816/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/o60816/subscriptions"},"name":"Windows-driver-samples","full_name":"o60816/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2020-01-22T02:43:54Z","pushed_at":"2020-01-22T03:20:42Z","updated_at":"2020-01-22T03:21:04Z","html_url":"https://github.com/o60816/Windows-driver-samples","clone_url":"https://github.com/o60816/Windows-driver-samples.git","git_url":"git://github.com/o60816/Windows-driver-samples.git","ssh_url":"git@github.com:o60816/Windows-driver-samples.git","svn_url":"https://github.com/o60816/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162709,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/o60816/Windows-driver-samples","archive_url":"https://api.github.com/repos/o60816/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/o60816/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/o60816/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/o60816/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/o60816/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/o60816/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/o60816/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/o60816/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/o60816/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/o60816/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/o60816/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/o60816/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/o60816/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/o60816/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/o60816/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/o60816/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/o60816/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/o60816/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/o60816/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/o60816/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/o60816/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/o60816/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/o60816/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/o60816/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/o60816/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/o60816/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/o60816/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/o60816/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/o60816/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/o60816/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/o60816/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/o60816/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/o60816/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/o60816/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/o60816/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/o60816/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"o60816","id":8295659,"node_id":"MDQ6VXNlcjgyOTU2NTk=","avatar_url":"https://avatars.githubusercontent.com/u/8295659?v=4","html_url":"https://github.com/o60816","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/o60816","events_url":"https://api.github.com/users/o60816/events{/privacy}","following_url":"https://api.github.com/users/o60816/following{/other_user}","followers_url":"https://api.github.com/users/o60816/followers","gists_url":"https://api.github.com/users/o60816/gists{/gist_id}","organizations_url":"https://api.github.com/users/o60816/orgs","received_events_url":"https://api.github.com/users/o60816/received_events","repos_url":"https://api.github.com/users/o60816/repos","starred_url":"https://api.github.com/users/o60816/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/o60816/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":360709205,"number":451,"state":"open","locked":false,"title":"SFloppy: Clarify an 'if()'","body":"* Move a closing parenthesis.\n* H-align.","created_at":"2020-01-09T00:02:40Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/451","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/451","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/451","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ee19ac59b81fa1724d4cf323f12003af43238ff7","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/451.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/451.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/451/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/451/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/451/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MzYwNzA5MjA1","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/451"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/451"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/451"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/451/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/451/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/451/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ee19ac59b81fa1724d4cf323f12003af43238ff7"}},"head":{"label":"SergeGautherie:SergeGautherie/PRonly_SFloppy_clarify-an-if","ref":"SergeGautherie/PRonly_SFloppy_clarify-an-if","sha":"ee19ac59b81fa1724d4cf323f12003af43238ff7","repo":{"id":190296760,"node_id":"MDEwOlJlcG9zaXRvcnkxOTAyOTY3NjA=","owner":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"name":"Windows-driver-samples","full_name":"SergeGautherie/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2019-06-05T00:06:03Z","pushed_at":"2025-06-29T16:26:32Z","updated_at":"2023-08-24T10:48:04Z","html_url":"https://github.com/SergeGautherie/Windows-driver-samples","clone_url":"https://github.com/SergeGautherie/Windows-driver-samples.git","git_url":"git://github.com/SergeGautherie/Windows-driver-samples.git","ssh_url":"git@github.com:SergeGautherie/Windows-driver-samples.git","svn_url":"https://github.com/SergeGautherie/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165675,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples","archive_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":351129044,"number":445,"state":"open","locked":false,"title":"Clean up some MAX_*","body":"","created_at":"2019-12-09T23:42:16Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/445","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/445","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/445","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/53fef52c59cfad50bf6e301f6c9fc3692f416fdf","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/445.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/445.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/445/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/445/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/445/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MzUxMTI5MDQ0","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/445"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/445"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/445"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/445/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/445/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/445/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/53fef52c59cfad50bf6e301f6c9fc3692f416fdf"}},"head":{"label":"SergeGautherie:SergeGautherie/PRonly_MAX__useless-and-typos","ref":"SergeGautherie/PRonly_MAX__useless-and-typos","sha":"53fef52c59cfad50bf6e301f6c9fc3692f416fdf","repo":{"id":190296760,"node_id":"MDEwOlJlcG9zaXRvcnkxOTAyOTY3NjA=","owner":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"name":"Windows-driver-samples","full_name":"SergeGautherie/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2019-06-05T00:06:03Z","pushed_at":"2025-06-29T16:26:32Z","updated_at":"2023-08-24T10:48:04Z","html_url":"https://github.com/SergeGautherie/Windows-driver-samples","clone_url":"https://github.com/SergeGautherie/Windows-driver-samples.git","git_url":"git://github.com/SergeGautherie/Windows-driver-samples.git","ssh_url":"git@github.com:SergeGautherie/Windows-driver-samples.git","svn_url":"https://github.com/SergeGautherie/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165675,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples","archive_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":339525010,"number":440,"state":"open","locked":false,"title":"Removed incorrect file handle check","body":"The correct check would be `fileHandle != INVALID_HANDLE_VALUE`, but since the flow ensures that the handle is valid, the check is redundant.","created_at":"2019-11-11T16:52:36Z","updated_at":"2025-10-30T09:09:12Z","user":{"login":"m417z","id":4129781,"node_id":"MDQ6VXNlcjQxMjk3ODE=","avatar_url":"https://avatars.githubusercontent.com/u/4129781?v=4","html_url":"https://github.com/m417z","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/m417z","events_url":"https://api.github.com/users/m417z/events{/privacy}","following_url":"https://api.github.com/users/m417z/following{/other_user}","followers_url":"https://api.github.com/users/m417z/followers","gists_url":"https://api.github.com/users/m417z/gists{/gist_id}","organizations_url":"https://api.github.com/users/m417z/orgs","received_events_url":"https://api.github.com/users/m417z/received_events","repos_url":"https://api.github.com/users/m417z/repos","starred_url":"https://api.github.com/users/m417z/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/m417z/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/440","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/440","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/440","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/e0e253f9fd986cadf2320506123f09b47e12a4df","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/440.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/440.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/440/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/440/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/440/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MzM5NTI1MDEw","merge_commit_sha":"911e0661dc8a94b28d2237190c7248ae866d18b5","requested_teams":[{"id":9104021,"node_id":"T_kwDOAF3p4s4AiuqV","name":"CoreOS Buses and WDF","description":"CoreOS Buses and WDF","url":"https://api.github.com/organizations/6154722/team/9104021","slug":"coreos-buses-and-wdf","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/coreos-buses-and-wdf","members_url":"https://api.github.com/organizations/6154722/team/9104021/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9104021/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/440"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/440"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/440"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/440/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/440/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/440/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/e0e253f9fd986cadf2320506123f09b47e12a4df"}},"head":{"label":"m417z:patch-1","ref":"patch-1","sha":"e0e253f9fd986cadf2320506123f09b47e12a4df","repo":{"id":221026865,"node_id":"MDEwOlJlcG9zaXRvcnkyMjEwMjY4NjU=","owner":{"login":"m417z","id":4129781,"node_id":"MDQ6VXNlcjQxMjk3ODE=","avatar_url":"https://avatars.githubusercontent.com/u/4129781?v=4","html_url":"https://github.com/m417z","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/m417z","events_url":"https://api.github.com/users/m417z/events{/privacy}","following_url":"https://api.github.com/users/m417z/following{/other_user}","followers_url":"https://api.github.com/users/m417z/followers","gists_url":"https://api.github.com/users/m417z/gists{/gist_id}","organizations_url":"https://api.github.com/users/m417z/orgs","received_events_url":"https://api.github.com/users/m417z/received_events","repos_url":"https://api.github.com/users/m417z/repos","starred_url":"https://api.github.com/users/m417z/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/m417z/subscriptions"},"name":"Windows-driver-samples","full_name":"m417z/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2019-11-11T16:50:15Z","pushed_at":"2025-10-30T09:09:11Z","updated_at":"2024-05-29T04:59:03Z","html_url":"https://github.com/m417z/Windows-driver-samples","clone_url":"https://github.com/m417z/Windows-driver-samples.git","git_url":"git://github.com/m417z/Windows-driver-samples.git","ssh_url":"git@github.com:m417z/Windows-driver-samples.git","svn_url":"https://github.com/m417z/Windows-driver-samples","fork":true,"forks_count":2,"open_issues_count":0,"open_issues":0,"stargazers_count":2,"watchers_count":2,"watchers":2,"size":165734,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/m417z/Windows-driver-samples","archive_url":"https://api.github.com/repos/m417z/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/m417z/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/m417z/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/m417z/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/m417z/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/m417z/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/m417z/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/m417z/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/m417z/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/m417z/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/m417z/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/m417z/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/m417z/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/m417z/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/m417z/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/m417z/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/m417z/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/m417z/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/m417z/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/m417z/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/m417z/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/m417z/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/m417z/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/m417z/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/m417z/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/m417z/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/m417z/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/m417z/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/m417z/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/m417z/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/m417z/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/m417z/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/m417z/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/m417z/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/m417z/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/m417z/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"m417z","id":4129781,"node_id":"MDQ6VXNlcjQxMjk3ODE=","avatar_url":"https://avatars.githubusercontent.com/u/4129781?v=4","html_url":"https://github.com/m417z","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/m417z","events_url":"https://api.github.com/users/m417z/events{/privacy}","following_url":"https://api.github.com/users/m417z/following{/other_user}","followers_url":"https://api.github.com/users/m417z/followers","gists_url":"https://api.github.com/users/m417z/gists{/gist_id}","organizations_url":"https://api.github.com/users/m417z/orgs","received_events_url":"https://api.github.com/users/m417z/received_events","repos_url":"https://api.github.com/users/m417z/repos","starred_url":"https://api.github.com/users/m417z/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/m417z/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"57ea2d0f5a34d677338c2aaa7fa20a601038439c","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":332312967,"number":431,"state":"open","locked":false,"title":"NULL pointer exception errors fixed","body":"I think, at this point, pIUsbTargetDevice is NULL.\nSo it will be used as m_pIUsbTargetDevice variable.","created_at":"2019-10-25T02:26:19Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"JinZhuXing","id":15034343,"node_id":"MDQ6VXNlcjE1MDM0MzQz","avatar_url":"https://avatars.githubusercontent.com/u/15034343?v=4","html_url":"https://github.com/JinZhuXing","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JinZhuXing","events_url":"https://api.github.com/users/JinZhuXing/events{/privacy}","following_url":"https://api.github.com/users/JinZhuXing/following{/other_user}","followers_url":"https://api.github.com/users/JinZhuXing/followers","gists_url":"https://api.github.com/users/JinZhuXing/gists{/gist_id}","organizations_url":"https://api.github.com/users/JinZhuXing/orgs","received_events_url":"https://api.github.com/users/JinZhuXing/received_events","repos_url":"https://api.github.com/users/JinZhuXing/repos","starred_url":"https://api.github.com/users/JinZhuXing/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JinZhuXing/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/431","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/431","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/431","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/e42fb020da5dbb317da99a762be53e67a92bf984","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/431.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/431.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/431/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/431/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/431/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MzMyMzEyOTY3","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/431"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/431"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/431"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/431/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/431/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/431/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/e42fb020da5dbb317da99a762be53e67a92bf984"}},"head":{"label":"JinZhuXing:master","ref":"master","sha":"e42fb020da5dbb317da99a762be53e67a92bf984","repo":{"id":217427958,"node_id":"MDEwOlJlcG9zaXRvcnkyMTc0Mjc5NTg=","owner":{"login":"JinZhuXing","id":15034343,"node_id":"MDQ6VXNlcjE1MDM0MzQz","avatar_url":"https://avatars.githubusercontent.com/u/15034343?v=4","html_url":"https://github.com/JinZhuXing","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JinZhuXing","events_url":"https://api.github.com/users/JinZhuXing/events{/privacy}","following_url":"https://api.github.com/users/JinZhuXing/following{/other_user}","followers_url":"https://api.github.com/users/JinZhuXing/followers","gists_url":"https://api.github.com/users/JinZhuXing/gists{/gist_id}","organizations_url":"https://api.github.com/users/JinZhuXing/orgs","received_events_url":"https://api.github.com/users/JinZhuXing/received_events","repos_url":"https://api.github.com/users/JinZhuXing/repos","starred_url":"https://api.github.com/users/JinZhuXing/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JinZhuXing/subscriptions"},"name":"Windows-driver-samples","full_name":"JinZhuXing/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2019-10-25T01:43:15Z","pushed_at":"2019-11-26T09:08:03Z","updated_at":"2022-04-21T08:30:31Z","html_url":"https://github.com/JinZhuXing/Windows-driver-samples","clone_url":"https://github.com/JinZhuXing/Windows-driver-samples.git","git_url":"git://github.com/JinZhuXing/Windows-driver-samples.git","ssh_url":"git@github.com:JinZhuXing/Windows-driver-samples.git","svn_url":"https://github.com/JinZhuXing/Windows-driver-samples","language":"C","fork":true,"forks_count":1,"open_issues_count":0,"open_issues":0,"stargazers_count":5,"watchers_count":5,"watchers":5,"size":162695,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples","archive_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/JinZhuXing/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"JinZhuXing","id":15034343,"node_id":"MDQ6VXNlcjE1MDM0MzQz","avatar_url":"https://avatars.githubusercontent.com/u/15034343?v=4","html_url":"https://github.com/JinZhuXing","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/JinZhuXing","events_url":"https://api.github.com/users/JinZhuXing/events{/privacy}","following_url":"https://api.github.com/users/JinZhuXing/following{/other_user}","followers_url":"https://api.github.com/users/JinZhuXing/followers","gists_url":"https://api.github.com/users/JinZhuXing/gists{/gist_id}","organizations_url":"https://api.github.com/users/JinZhuXing/orgs","received_events_url":"https://api.github.com/users/JinZhuXing/received_events","repos_url":"https://api.github.com/users/JinZhuXing/repos","starred_url":"https://api.github.com/users/JinZhuXing/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JinZhuXing/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":315133615,"number":413,"state":"open","locked":false,"title":"User/dahung/camera sample diridfix","body":"Changed sample drivers to install to DIRID 13 for WCOS State Separation compliance\nRenamed .inf files to .inx files to reflect template INF format (i.e. pre-stampinf)","created_at":"2019-09-06T22:31:37Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"dhung-msft","id":39925549,"node_id":"MDQ6VXNlcjM5OTI1NTQ5","avatar_url":"https://avatars.githubusercontent.com/u/39925549?v=4","html_url":"https://github.com/dhung-msft","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/dhung-msft","events_url":"https://api.github.com/users/dhung-msft/events{/privacy}","following_url":"https://api.github.com/users/dhung-msft/following{/other_user}","followers_url":"https://api.github.com/users/dhung-msft/followers","gists_url":"https://api.github.com/users/dhung-msft/gists{/gist_id}","organizations_url":"https://api.github.com/users/dhung-msft/orgs","received_events_url":"https://api.github.com/users/dhung-msft/received_events","repos_url":"https://api.github.com/users/dhung-msft/repos","starred_url":"https://api.github.com/users/dhung-msft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dhung-msft/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/413","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/413","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/413","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/305210b7deb90c95c2ce72f2802f75af0523a1af","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/413.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/413.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/413/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/413/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/413/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MzE1MTMzNjE1","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/413"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/413"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/413"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/413/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/413/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/413/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/305210b7deb90c95c2ce72f2802f75af0523a1af"}},"head":{"label":"dhung-msft:user/dahung/camera_sample_diridfix","ref":"user/dahung/camera_sample_diridfix","sha":"305210b7deb90c95c2ce72f2802f75af0523a1af","repo":{"id":206883102,"node_id":"MDEwOlJlcG9zaXRvcnkyMDY4ODMxMDI=","owner":{"login":"dhung-msft","id":39925549,"node_id":"MDQ6VXNlcjM5OTI1NTQ5","avatar_url":"https://avatars.githubusercontent.com/u/39925549?v=4","html_url":"https://github.com/dhung-msft","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/dhung-msft","events_url":"https://api.github.com/users/dhung-msft/events{/privacy}","following_url":"https://api.github.com/users/dhung-msft/following{/other_user}","followers_url":"https://api.github.com/users/dhung-msft/followers","gists_url":"https://api.github.com/users/dhung-msft/gists{/gist_id}","organizations_url":"https://api.github.com/users/dhung-msft/orgs","received_events_url":"https://api.github.com/users/dhung-msft/received_events","repos_url":"https://api.github.com/users/dhung-msft/repos","starred_url":"https://api.github.com/users/dhung-msft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dhung-msft/subscriptions"},"name":"Windows-driver-samples","full_name":"dhung-msft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2019-09-06T22:29:28Z","pushed_at":"2019-09-06T22:30:20Z","updated_at":"2019-09-06T22:29:29Z","html_url":"https://github.com/dhung-msft/Windows-driver-samples","clone_url":"https://github.com/dhung-msft/Windows-driver-samples.git","git_url":"git://github.com/dhung-msft/Windows-driver-samples.git","ssh_url":"git@github.com:dhung-msft/Windows-driver-samples.git","svn_url":"https://github.com/dhung-msft/Windows-driver-samples","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162610,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples","archive_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/dhung-msft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"dhung-msft","id":39925549,"node_id":"MDQ6VXNlcjM5OTI1NTQ5","avatar_url":"https://avatars.githubusercontent.com/u/39925549?v=4","html_url":"https://github.com/dhung-msft","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/dhung-msft","events_url":"https://api.github.com/users/dhung-msft/events{/privacy}","following_url":"https://api.github.com/users/dhung-msft/following{/other_user}","followers_url":"https://api.github.com/users/dhung-msft/followers","gists_url":"https://api.github.com/users/dhung-msft/gists{/gist_id}","organizations_url":"https://api.github.com/users/dhung-msft/orgs","received_events_url":"https://api.github.com/users/dhung-msft/received_events","repos_url":"https://api.github.com/users/dhung-msft/repos","starred_url":"https://api.github.com/users/dhung-msft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dhung-msft/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":285192713,"number":381,"state":"open","locked":false,"title":"FastFAT: Check FASTFATDBG with #ifdef, not #if","body":"","created_at":"2019-06-05T00:51:11Z","updated_at":"2024-05-23T19:17:11Z","user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/381","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/381","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/381","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/53478f1fda89bae204795f5c7acf6b2a46ea9160","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/381.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/381.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/381/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/381/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/381/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0Mjg1MTkyNzEz","merge_commit_sha":"ea279130544a73ce95bafea6f0f7e4e75a37e36c","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/381"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/381"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/381"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/381/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/381/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/381/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/53478f1fda89bae204795f5c7acf6b2a46ea9160"}},"head":{"label":"SergeGautherie:FASTFATDBG_ifdef","ref":"FASTFATDBG_ifdef","sha":"53478f1fda89bae204795f5c7acf6b2a46ea9160","repo":{"id":190296760,"node_id":"MDEwOlJlcG9zaXRvcnkxOTAyOTY3NjA=","owner":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"name":"Windows-driver-samples","full_name":"SergeGautherie/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2019-06-05T00:06:03Z","pushed_at":"2025-06-29T16:26:32Z","updated_at":"2023-08-24T10:48:04Z","html_url":"https://github.com/SergeGautherie/Windows-driver-samples","clone_url":"https://github.com/SergeGautherie/Windows-driver-samples.git","git_url":"git://github.com/SergeGautherie/Windows-driver-samples.git","ssh_url":"git@github.com:SergeGautherie/Windows-driver-samples.git","svn_url":"https://github.com/SergeGautherie/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165675,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples","archive_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":285187746,"number":380,"state":"open","locked":false,"title":"FastFAT: Check DBG with #if, not #ifdef","body":"","created_at":"2019-06-05T00:18:27Z","updated_at":"2024-05-23T19:16:48Z","user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/380","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/380","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/380","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/008e71ab9eac84fafc8d68fc9357a6b9eabe8766","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/380.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/380.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/380/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/380/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/380/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0Mjg1MTg3NzQ2","merge_commit_sha":"0232aed349967fe848d707192f96f7e03e6fbe63","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/380"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/380"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/380"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/380/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/380/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/380/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/008e71ab9eac84fafc8d68fc9357a6b9eabe8766"}},"head":{"label":"SergeGautherie:patch-1","ref":"patch-1","sha":"008e71ab9eac84fafc8d68fc9357a6b9eabe8766","repo":{"id":190296760,"node_id":"MDEwOlJlcG9zaXRvcnkxOTAyOTY3NjA=","owner":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"},"name":"Windows-driver-samples","full_name":"SergeGautherie/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2019-06-05T00:06:03Z","pushed_at":"2025-06-29T16:26:32Z","updated_at":"2023-08-24T10:48:04Z","html_url":"https://github.com/SergeGautherie/Windows-driver-samples","clone_url":"https://github.com/SergeGautherie/Windows-driver-samples.git","git_url":"git://github.com/SergeGautherie/Windows-driver-samples.git","ssh_url":"git@github.com:SergeGautherie/Windows-driver-samples.git","svn_url":"https://github.com/SergeGautherie/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165675,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples","archive_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/SergeGautherie/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"SergeGautherie","id":32623169,"node_id":"MDQ6VXNlcjMyNjIzMTY5","avatar_url":"https://avatars.githubusercontent.com/u/32623169?v=4","html_url":"https://github.com/SergeGautherie","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SergeGautherie","events_url":"https://api.github.com/users/SergeGautherie/events{/privacy}","following_url":"https://api.github.com/users/SergeGautherie/following{/other_user}","followers_url":"https://api.github.com/users/SergeGautherie/followers","gists_url":"https://api.github.com/users/SergeGautherie/gists{/gist_id}","organizations_url":"https://api.github.com/users/SergeGautherie/orgs","received_events_url":"https://api.github.com/users/SergeGautherie/received_events","repos_url":"https://api.github.com/users/SergeGautherie/repos","starred_url":"https://api.github.com/users/SergeGautherie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SergeGautherie/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":252720564,"number":351,"state":"open","locked":false,"title":"Update clisrv.c","body":"change the meaningless condition (size_t: unsigned type) as it must be.","created_at":"2019-02-13T14:44:32Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"SweatingEgg","id":22257656,"node_id":"MDQ6VXNlcjIyMjU3NjU2","avatar_url":"https://avatars.githubusercontent.com/u/22257656?v=4","html_url":"https://github.com/SweatingEgg","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SweatingEgg","events_url":"https://api.github.com/users/SweatingEgg/events{/privacy}","following_url":"https://api.github.com/users/SweatingEgg/following{/other_user}","followers_url":"https://api.github.com/users/SweatingEgg/followers","gists_url":"https://api.github.com/users/SweatingEgg/gists{/gist_id}","organizations_url":"https://api.github.com/users/SweatingEgg/orgs","received_events_url":"https://api.github.com/users/SweatingEgg/received_events","repos_url":"https://api.github.com/users/SweatingEgg/repos","starred_url":"https://api.github.com/users/SweatingEgg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SweatingEgg/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/351","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/351","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/351","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ca56f6c55905364866f9be5c3b357c304f3cc961","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/351.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/351.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/351/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/351/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/351/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MjUyNzIwNTY0","merge_commit_sha":"9ef54a1a61ff6151e69c4150bf09b8624b0ad935","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/351"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/351"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/351"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/351/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/351/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/351/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/ca56f6c55905364866f9be5c3b357c304f3cc961"}},"head":{"label":"SweatingEgg:patch-2","ref":"patch-2","sha":"ca56f6c55905364866f9be5c3b357c304f3cc961","repo":{"id":170519611,"node_id":"MDEwOlJlcG9zaXRvcnkxNzA1MTk2MTE=","owner":{"login":"SweatingEgg","id":22257656,"node_id":"MDQ6VXNlcjIyMjU3NjU2","avatar_url":"https://avatars.githubusercontent.com/u/22257656?v=4","html_url":"https://github.com/SweatingEgg","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SweatingEgg","events_url":"https://api.github.com/users/SweatingEgg/events{/privacy}","following_url":"https://api.github.com/users/SweatingEgg/following{/other_user}","followers_url":"https://api.github.com/users/SweatingEgg/followers","gists_url":"https://api.github.com/users/SweatingEgg/gists{/gist_id}","organizations_url":"https://api.github.com/users/SweatingEgg/orgs","received_events_url":"https://api.github.com/users/SweatingEgg/received_events","repos_url":"https://api.github.com/users/SweatingEgg/repos","starred_url":"https://api.github.com/users/SweatingEgg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SweatingEgg/subscriptions"},"name":"Windows-driver-samples","full_name":"SweatingEgg/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2019-02-13T14:16:01Z","pushed_at":"2019-02-15T05:33:07Z","updated_at":"2019-02-13T14:16:21Z","html_url":"https://github.com/SweatingEgg/Windows-driver-samples","clone_url":"https://github.com/SweatingEgg/Windows-driver-samples.git","git_url":"git://github.com/SweatingEgg/Windows-driver-samples.git","ssh_url":"git@github.com:SweatingEgg/Windows-driver-samples.git","svn_url":"https://github.com/SweatingEgg/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162360,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples","archive_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"SweatingEgg","id":22257656,"node_id":"MDQ6VXNlcjIyMjU3NjU2","avatar_url":"https://avatars.githubusercontent.com/u/22257656?v=4","html_url":"https://github.com/SweatingEgg","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SweatingEgg","events_url":"https://api.github.com/users/SweatingEgg/events{/privacy}","following_url":"https://api.github.com/users/SweatingEgg/following{/other_user}","followers_url":"https://api.github.com/users/SweatingEgg/followers","gists_url":"https://api.github.com/users/SweatingEgg/gists{/gist_id}","organizations_url":"https://api.github.com/users/SweatingEgg/orgs","received_events_url":"https://api.github.com/users/SweatingEgg/received_events","repos_url":"https://api.github.com/users/SweatingEgg/repos","starred_url":"https://api.github.com/users/SweatingEgg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SweatingEgg/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":252711243,"number":350,"state":"open","locked":false,"title":"Update connection.c","body":"change the meaningless condition as it must be.","created_at":"2019-02-13T14:19:22Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"SweatingEgg","id":22257656,"node_id":"MDQ6VXNlcjIyMjU3NjU2","avatar_url":"https://avatars.githubusercontent.com/u/22257656?v=4","html_url":"https://github.com/SweatingEgg","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SweatingEgg","events_url":"https://api.github.com/users/SweatingEgg/events{/privacy}","following_url":"https://api.github.com/users/SweatingEgg/following{/other_user}","followers_url":"https://api.github.com/users/SweatingEgg/followers","gists_url":"https://api.github.com/users/SweatingEgg/gists{/gist_id}","organizations_url":"https://api.github.com/users/SweatingEgg/orgs","received_events_url":"https://api.github.com/users/SweatingEgg/received_events","repos_url":"https://api.github.com/users/SweatingEgg/repos","starred_url":"https://api.github.com/users/SweatingEgg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SweatingEgg/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/350","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/350","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/350","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/90e6929262bf37160ea62125d7c4632161366113","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/350.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/350.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/350/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/350/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/350/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MjUyNzExMjQz","merge_commit_sha":"1ced838a95bef7ea8a10a0245a5c90642ce8895b","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/350"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/350"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/350"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/350/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/350/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/350/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/90e6929262bf37160ea62125d7c4632161366113"}},"head":{"label":"SweatingEgg:patch-1","ref":"patch-1","sha":"90e6929262bf37160ea62125d7c4632161366113","repo":{"id":170519611,"node_id":"MDEwOlJlcG9zaXRvcnkxNzA1MTk2MTE=","owner":{"login":"SweatingEgg","id":22257656,"node_id":"MDQ6VXNlcjIyMjU3NjU2","avatar_url":"https://avatars.githubusercontent.com/u/22257656?v=4","html_url":"https://github.com/SweatingEgg","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SweatingEgg","events_url":"https://api.github.com/users/SweatingEgg/events{/privacy}","following_url":"https://api.github.com/users/SweatingEgg/following{/other_user}","followers_url":"https://api.github.com/users/SweatingEgg/followers","gists_url":"https://api.github.com/users/SweatingEgg/gists{/gist_id}","organizations_url":"https://api.github.com/users/SweatingEgg/orgs","received_events_url":"https://api.github.com/users/SweatingEgg/received_events","repos_url":"https://api.github.com/users/SweatingEgg/repos","starred_url":"https://api.github.com/users/SweatingEgg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SweatingEgg/subscriptions"},"name":"Windows-driver-samples","full_name":"SweatingEgg/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2019-02-13T14:16:01Z","pushed_at":"2019-02-15T05:33:07Z","updated_at":"2019-02-13T14:16:21Z","html_url":"https://github.com/SweatingEgg/Windows-driver-samples","clone_url":"https://github.com/SweatingEgg/Windows-driver-samples.git","git_url":"git://github.com/SweatingEgg/Windows-driver-samples.git","ssh_url":"git@github.com:SweatingEgg/Windows-driver-samples.git","svn_url":"https://github.com/SweatingEgg/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162360,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples","archive_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/SweatingEgg/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"SweatingEgg","id":22257656,"node_id":"MDQ6VXNlcjIyMjU3NjU2","avatar_url":"https://avatars.githubusercontent.com/u/22257656?v=4","html_url":"https://github.com/SweatingEgg","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/SweatingEgg","events_url":"https://api.github.com/users/SweatingEgg/events{/privacy}","following_url":"https://api.github.com/users/SweatingEgg/following{/other_user}","followers_url":"https://api.github.com/users/SweatingEgg/followers","gists_url":"https://api.github.com/users/SweatingEgg/gists{/gist_id}","organizations_url":"https://api.github.com/users/SweatingEgg/orgs","received_events_url":"https://api.github.com/users/SweatingEgg/received_events","repos_url":"https://api.github.com/users/SweatingEgg/repos","starred_url":"https://api.github.com/users/SweatingEgg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SweatingEgg/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":247914166,"number":339,"state":"open","locked":false,"title":"Updated README.md to reflect changes made to the code","body":"This is linked to https://github.com/Microsoft/Windows-driver-samples/issues/333.","created_at":"2019-01-26T21:07:31Z","updated_at":"2025-12-03T00:18:10Z","user":{"login":"tonysepia","id":2421174,"node_id":"MDQ6VXNlcjI0MjExNzQ=","avatar_url":"https://avatars.githubusercontent.com/u/2421174?v=4","html_url":"https://github.com/tonysepia","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/tonysepia","events_url":"https://api.github.com/users/tonysepia/events{/privacy}","following_url":"https://api.github.com/users/tonysepia/following{/other_user}","followers_url":"https://api.github.com/users/tonysepia/followers","gists_url":"https://api.github.com/users/tonysepia/gists{/gist_id}","organizations_url":"https://api.github.com/users/tonysepia/orgs","received_events_url":"https://api.github.com/users/tonysepia/received_events","repos_url":"https://api.github.com/users/tonysepia/repos","starred_url":"https://api.github.com/users/tonysepia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tonysepia/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/339","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/339","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/339","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/cfe0f5b4208713a12916588315629d0e0d290af2","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/339.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/339.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/339/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/339/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/339/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MjQ3OTE0MTY2","merge_commit_sha":"b7807540eadd4fc020ce43465c7ddfdb964dcfdf","requested_teams":[{"id":9104021,"node_id":"T_kwDOAF3p4s4AiuqV","name":"CoreOS Buses and WDF","description":"CoreOS Buses and WDF","url":"https://api.github.com/organizations/6154722/team/9104021","slug":"coreos-buses-and-wdf","permission":"pull","privacy":"closed","notification_setting":"notifications_enabled","html_url":"https://github.com/orgs/microsoft/teams/coreos-buses-and-wdf","members_url":"https://api.github.com/organizations/6154722/team/9104021/members{/member}","repositories_url":"https://api.github.com/organizations/6154722/team/9104021/repos"}],"_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/339"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/339"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/339"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/339/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/339/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/339/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/cfe0f5b4208713a12916588315629d0e0d290af2"}},"head":{"label":"tonysepia:patch-1","ref":"patch-1","sha":"cfe0f5b4208713a12916588315629d0e0d290af2","repo":{"id":165144525,"node_id":"MDEwOlJlcG9zaXRvcnkxNjUxNDQ1MjU=","owner":{"login":"tonysepia","id":2421174,"node_id":"MDQ6VXNlcjI0MjExNzQ=","avatar_url":"https://avatars.githubusercontent.com/u/2421174?v=4","html_url":"https://github.com/tonysepia","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/tonysepia","events_url":"https://api.github.com/users/tonysepia/events{/privacy}","following_url":"https://api.github.com/users/tonysepia/following{/other_user}","followers_url":"https://api.github.com/users/tonysepia/followers","gists_url":"https://api.github.com/users/tonysepia/gists{/gist_id}","organizations_url":"https://api.github.com/users/tonysepia/orgs","received_events_url":"https://api.github.com/users/tonysepia/received_events","repos_url":"https://api.github.com/users/tonysepia/repos","starred_url":"https://api.github.com/users/tonysepia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tonysepia/subscriptions"},"name":"Windows-driver-samples","full_name":"tonysepia/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2019-01-10T23:06:07Z","pushed_at":"2025-12-02T20:39:01Z","updated_at":"2019-01-10T23:06:26Z","html_url":"https://github.com/tonysepia/Windows-driver-samples","clone_url":"https://github.com/tonysepia/Windows-driver-samples.git","git_url":"git://github.com/tonysepia/Windows-driver-samples.git","ssh_url":"git@github.com:tonysepia/Windows-driver-samples.git","svn_url":"https://github.com/tonysepia/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":165737,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/tonysepia/Windows-driver-samples","archive_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/tonysepia/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"tonysepia","id":2421174,"node_id":"MDQ6VXNlcjI0MjExNzQ=","avatar_url":"https://avatars.githubusercontent.com/u/2421174?v=4","html_url":"https://github.com/tonysepia","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/tonysepia","events_url":"https://api.github.com/users/tonysepia/events{/privacy}","following_url":"https://api.github.com/users/tonysepia/following{/other_user}","followers_url":"https://api.github.com/users/tonysepia/followers","gists_url":"https://api.github.com/users/tonysepia/gists{/gist_id}","organizations_url":"https://api.github.com/users/tonysepia/orgs","received_events_url":"https://api.github.com/users/tonysepia/received_events","repos_url":"https://api.github.com/users/tonysepia/repos","starred_url":"https://api.github.com/users/tonysepia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tonysepia/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"1d89a1513f519f62226f84a3131916ab2fd0c3ef","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":237474605,"number":321,"state":"open","locked":false,"title":"Fixed some annotations and some incorrect accesses to possible null v…","body":"…ariables","created_at":"2018-12-10T21:37:25Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"microkatz","id":45770613,"node_id":"MDQ6VXNlcjQ1NzcwNjEz","avatar_url":"https://avatars.githubusercontent.com/u/45770613?v=4","html_url":"https://github.com/microkatz","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/microkatz","events_url":"https://api.github.com/users/microkatz/events{/privacy}","following_url":"https://api.github.com/users/microkatz/following{/other_user}","followers_url":"https://api.github.com/users/microkatz/followers","gists_url":"https://api.github.com/users/microkatz/gists{/gist_id}","organizations_url":"https://api.github.com/users/microkatz/orgs","received_events_url":"https://api.github.com/users/microkatz/received_events","repos_url":"https://api.github.com/users/microkatz/repos","starred_url":"https://api.github.com/users/microkatz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microkatz/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/321","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/321","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/321","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/92662cbaa915c6852d0861066ba78cc6b78edf3f","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/321.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/321.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/321/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/321/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/321/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MjM3NDc0NjA1","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/321"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/321"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/321"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/321/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/321/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/321/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/92662cbaa915c6852d0861066ba78cc6b78edf3f"}},"head":{"label":"microkatz:TVS_Fixes","ref":"TVS_Fixes","sha":"92662cbaa915c6852d0861066ba78cc6b78edf3f","repo":{"id":161238613,"node_id":"MDEwOlJlcG9zaXRvcnkxNjEyMzg2MTM=","owner":{"login":"microkatz","id":45770613,"node_id":"MDQ6VXNlcjQ1NzcwNjEz","avatar_url":"https://avatars.githubusercontent.com/u/45770613?v=4","html_url":"https://github.com/microkatz","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/microkatz","events_url":"https://api.github.com/users/microkatz/events{/privacy}","following_url":"https://api.github.com/users/microkatz/following{/other_user}","followers_url":"https://api.github.com/users/microkatz/followers","gists_url":"https://api.github.com/users/microkatz/gists{/gist_id}","organizations_url":"https://api.github.com/users/microkatz/orgs","received_events_url":"https://api.github.com/users/microkatz/received_events","repos_url":"https://api.github.com/users/microkatz/repos","starred_url":"https://api.github.com/users/microkatz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microkatz/subscriptions"},"name":"Windows-driver-samples","full_name":"microkatz/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2018-12-10T21:28:00Z","pushed_at":"2022-04-20T20:47:03Z","updated_at":"2023-05-27T07:39:24Z","html_url":"https://github.com/microkatz/Windows-driver-samples","clone_url":"https://github.com/microkatz/Windows-driver-samples.git","git_url":"git://github.com/microkatz/Windows-driver-samples.git","ssh_url":"git@github.com:microkatz/Windows-driver-samples.git","svn_url":"https://github.com/microkatz/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":1,"watchers_count":1,"watchers":1,"size":163847,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microkatz/Windows-driver-samples","archive_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microkatz/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microkatz","id":45770613,"node_id":"MDQ6VXNlcjQ1NzcwNjEz","avatar_url":"https://avatars.githubusercontent.com/u/45770613?v=4","html_url":"https://github.com/microkatz","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/microkatz","events_url":"https://api.github.com/users/microkatz/events{/privacy}","following_url":"https://api.github.com/users/microkatz/following{/other_user}","followers_url":"https://api.github.com/users/microkatz/followers","gists_url":"https://api.github.com/users/microkatz/gists{/gist_id}","organizations_url":"https://api.github.com/users/microkatz/orgs","received_events_url":"https://api.github.com/users/microkatz/received_events","repos_url":"https://api.github.com/users/microkatz/repos","starred_url":"https://api.github.com/users/microkatz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microkatz/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":226354378,"number":306,"state":"open","locked":false,"title":"Fix service handle not closed when StartService fails","body":"","created_at":"2018-10-28T09:37:31Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"ixjf","id":2250556,"node_id":"MDQ6VXNlcjIyNTA1NTY=","avatar_url":"https://avatars.githubusercontent.com/u/2250556?v=4","html_url":"https://github.com/ixjf","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/ixjf","events_url":"https://api.github.com/users/ixjf/events{/privacy}","following_url":"https://api.github.com/users/ixjf/following{/other_user}","followers_url":"https://api.github.com/users/ixjf/followers","gists_url":"https://api.github.com/users/ixjf/gists{/gist_id}","organizations_url":"https://api.github.com/users/ixjf/orgs","received_events_url":"https://api.github.com/users/ixjf/received_events","repos_url":"https://api.github.com/users/ixjf/repos","starred_url":"https://api.github.com/users/ixjf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ixjf/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/306","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/306","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/306","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/cd22e071e77f62f967ab7502f668250ac2bed504","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/306.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/306.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/306/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/306/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/306/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MjI2MzU0Mzc4","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/306"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/306"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/306"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/306/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/306/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/306/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/cd22e071e77f62f967ab7502f668250ac2bed504"}},"head":{"label":"ixjf:patch-1","ref":"patch-1","sha":"cd22e071e77f62f967ab7502f668250ac2bed504","repo":{"id":155054491,"node_id":"MDEwOlJlcG9zaXRvcnkxNTUwNTQ0OTE=","owner":{"login":"ixjf","id":2250556,"node_id":"MDQ6VXNlcjIyNTA1NTY=","avatar_url":"https://avatars.githubusercontent.com/u/2250556?v=4","html_url":"https://github.com/ixjf","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/ixjf","events_url":"https://api.github.com/users/ixjf/events{/privacy}","following_url":"https://api.github.com/users/ixjf/following{/other_user}","followers_url":"https://api.github.com/users/ixjf/followers","gists_url":"https://api.github.com/users/ixjf/gists{/gist_id}","organizations_url":"https://api.github.com/users/ixjf/orgs","received_events_url":"https://api.github.com/users/ixjf/received_events","repos_url":"https://api.github.com/users/ixjf/repos","starred_url":"https://api.github.com/users/ixjf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ixjf/subscriptions"},"name":"Windows-driver-samples","full_name":"ixjf/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2018-10-28T09:30:47Z","pushed_at":"2018-10-28T09:36:50Z","updated_at":"2023-01-28T18:40:50Z","html_url":"https://github.com/ixjf/Windows-driver-samples","clone_url":"https://github.com/ixjf/Windows-driver-samples.git","git_url":"git://github.com/ixjf/Windows-driver-samples.git","ssh_url":"git@github.com:ixjf/Windows-driver-samples.git","svn_url":"https://github.com/ixjf/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162093,"allow_forking":true,"web_commit_signoff_required":false,"archived":true,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/ixjf/Windows-driver-samples","archive_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/ixjf/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"ixjf","id":2250556,"node_id":"MDQ6VXNlcjIyNTA1NTY=","avatar_url":"https://avatars.githubusercontent.com/u/2250556?v=4","html_url":"https://github.com/ixjf","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/ixjf","events_url":"https://api.github.com/users/ixjf/events{/privacy}","following_url":"https://api.github.com/users/ixjf/following{/other_user}","followers_url":"https://api.github.com/users/ixjf/followers","gists_url":"https://api.github.com/users/ixjf/gists{/gist_id}","organizations_url":"https://api.github.com/users/ixjf/orgs","received_events_url":"https://api.github.com/users/ixjf/received_events","repos_url":"https://api.github.com/users/ixjf/repos","starred_url":"https://api.github.com/users/ixjf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ixjf/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":214300667,"number":283,"state":"open","locked":false,"title":"Fix IOCTL_BTHX_READ/WRITE_HCI parameter sizes","body":"WRITE_HCI's second parameter is a ULONG, not a BTHX_HCI_PACKET_TYPE. These two types may or may not be of equal size, depending on the compiler.\n\nREAD_HCI is specified as taking a UCHAR representing the type. This driver\ninstead uses an enum type, with an implementation-defined size. Properly convert to this type from the specified UCHAR, and don't rely on the caller passing an enum-sized buffer.","created_at":"2018-09-10T12:43:29Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"Googulator","id":16308406,"node_id":"MDQ6VXNlcjE2MzA4NDA2","avatar_url":"https://avatars.githubusercontent.com/u/16308406?v=4","html_url":"https://github.com/Googulator","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/Googulator","events_url":"https://api.github.com/users/Googulator/events{/privacy}","following_url":"https://api.github.com/users/Googulator/following{/other_user}","followers_url":"https://api.github.com/users/Googulator/followers","gists_url":"https://api.github.com/users/Googulator/gists{/gist_id}","organizations_url":"https://api.github.com/users/Googulator/orgs","received_events_url":"https://api.github.com/users/Googulator/received_events","repos_url":"https://api.github.com/users/Googulator/repos","starred_url":"https://api.github.com/users/Googulator/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Googulator/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/283","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/283","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/283","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/655a051aa8ebdafbe0942f246862ff73acd8213f","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/283.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/283.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/283/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/283/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/283/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MjE0MzAwNjY3","merge_commit_sha":"c5d0a65c20d5569003dd0ff7c62dd434e28028f9","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/283"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/283"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/283"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/283/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/283/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/283/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/655a051aa8ebdafbe0942f246862ff73acd8213f"}},"head":{"label":"Googulator:master","ref":"master","sha":"655a051aa8ebdafbe0942f246862ff73acd8213f","repo":{"id":148153448,"node_id":"MDEwOlJlcG9zaXRvcnkxNDgxNTM0NDg=","owner":{"login":"Googulator","id":16308406,"node_id":"MDQ6VXNlcjE2MzA4NDA2","avatar_url":"https://avatars.githubusercontent.com/u/16308406?v=4","html_url":"https://github.com/Googulator","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/Googulator","events_url":"https://api.github.com/users/Googulator/events{/privacy}","following_url":"https://api.github.com/users/Googulator/following{/other_user}","followers_url":"https://api.github.com/users/Googulator/followers","gists_url":"https://api.github.com/users/Googulator/gists{/gist_id}","organizations_url":"https://api.github.com/users/Googulator/orgs","received_events_url":"https://api.github.com/users/Googulator/received_events","repos_url":"https://api.github.com/users/Googulator/repos","starred_url":"https://api.github.com/users/Googulator/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Googulator/subscriptions"},"name":"Windows-driver-samples","full_name":"Googulator/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2018-09-10T12:41:38Z","pushed_at":"2018-09-10T12:42:33Z","updated_at":"2023-01-17T20:10:49Z","html_url":"https://github.com/Googulator/Windows-driver-samples","clone_url":"https://github.com/Googulator/Windows-driver-samples.git","git_url":"git://github.com/Googulator/Windows-driver-samples.git","ssh_url":"git@github.com:Googulator/Windows-driver-samples.git","svn_url":"https://github.com/Googulator/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":1,"watchers_count":1,"watchers":1,"size":162037,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/Googulator/Windows-driver-samples","archive_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/Googulator/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"Googulator","id":16308406,"node_id":"MDQ6VXNlcjE2MzA4NDA2","avatar_url":"https://avatars.githubusercontent.com/u/16308406?v=4","html_url":"https://github.com/Googulator","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/Googulator","events_url":"https://api.github.com/users/Googulator/events{/privacy}","following_url":"https://api.github.com/users/Googulator/following{/other_user}","followers_url":"https://api.github.com/users/Googulator/followers","gists_url":"https://api.github.com/users/Googulator/gists{/gist_id}","organizations_url":"https://api.github.com/users/Googulator/orgs","received_events_url":"https://api.github.com/users/Googulator/received_events","repos_url":"https://api.github.com/users/Googulator/repos","starred_url":"https://api.github.com/users/Googulator/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Googulator/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":210517850,"number":277,"state":"open","locked":false,"title":"wfpsampler: fix null reference","body":"Since 0 is assigned to pSendParams, it becomes BSOD with the following code.\n\n```cpp\n if(FWPS_IS_METADATA_FIELD_PRESENT(pMetadata,\n FWPS_METADATA_FIELD_TRANSPORT_CONTROL_DATA))\n {\n pSendParams->controlData = pMetadata->controlData;\n pSendParams->controlDataLength = pMetadata->controlDataLength;\n }\n```","created_at":"2018-08-23T17:15:53Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"levi106","id":16788901,"node_id":"MDQ6VXNlcjE2Nzg4OTAx","avatar_url":"https://avatars.githubusercontent.com/u/16788901?v=4","html_url":"https://github.com/levi106","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/levi106","events_url":"https://api.github.com/users/levi106/events{/privacy}","following_url":"https://api.github.com/users/levi106/following{/other_user}","followers_url":"https://api.github.com/users/levi106/followers","gists_url":"https://api.github.com/users/levi106/gists{/gist_id}","organizations_url":"https://api.github.com/users/levi106/orgs","received_events_url":"https://api.github.com/users/levi106/received_events","repos_url":"https://api.github.com/users/levi106/repos","starred_url":"https://api.github.com/users/levi106/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/levi106/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/277","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/277","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/277","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/8ebda24a252e104fd78365b46707ab3dbc1605d1","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/277.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/277.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/277/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/277/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/277/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MjEwNTE3ODUw","merge_commit_sha":"ca7c0ed19eb30c9c368b5e62fa548eb4ae17f12e","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/277"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/277"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/277"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/277/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/277/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/277/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/8ebda24a252e104fd78365b46707ab3dbc1605d1"}},"head":{"label":"levi106:wfpsampler-fix-null-reference","ref":"wfpsampler-fix-null-reference","sha":"8ebda24a252e104fd78365b46707ab3dbc1605d1","repo":{"id":145883262,"node_id":"MDEwOlJlcG9zaXRvcnkxNDU4ODMyNjI=","owner":{"login":"levi106","id":16788901,"node_id":"MDQ6VXNlcjE2Nzg4OTAx","avatar_url":"https://avatars.githubusercontent.com/u/16788901?v=4","html_url":"https://github.com/levi106","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/levi106","events_url":"https://api.github.com/users/levi106/events{/privacy}","following_url":"https://api.github.com/users/levi106/following{/other_user}","followers_url":"https://api.github.com/users/levi106/followers","gists_url":"https://api.github.com/users/levi106/gists{/gist_id}","organizations_url":"https://api.github.com/users/levi106/orgs","received_events_url":"https://api.github.com/users/levi106/received_events","repos_url":"https://api.github.com/users/levi106/repos","starred_url":"https://api.github.com/users/levi106/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/levi106/subscriptions"},"name":"Windows-driver-samples","full_name":"levi106/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2018-08-23T16:59:06Z","pushed_at":"2018-08-23T17:08:47Z","updated_at":"2018-08-23T16:59:25Z","html_url":"https://github.com/levi106/Windows-driver-samples","clone_url":"https://github.com/levi106/Windows-driver-samples.git","git_url":"git://github.com/levi106/Windows-driver-samples.git","ssh_url":"git@github.com:levi106/Windows-driver-samples.git","svn_url":"https://github.com/levi106/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":162051,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/levi106/Windows-driver-samples","archive_url":"https://api.github.com/repos/levi106/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/levi106/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/levi106/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/levi106/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/levi106/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/levi106/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/levi106/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/levi106/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/levi106/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/levi106/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/levi106/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/levi106/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/levi106/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/levi106/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/levi106/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/levi106/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/levi106/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/levi106/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/levi106/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/levi106/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/levi106/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/levi106/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/levi106/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/levi106/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/levi106/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/levi106/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/levi106/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/levi106/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/levi106/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/levi106/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/levi106/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/levi106/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/levi106/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/levi106/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/levi106/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/levi106/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"levi106","id":16788901,"node_id":"MDQ6VXNlcjE2Nzg4OTAx","avatar_url":"https://avatars.githubusercontent.com/u/16788901?v=4","html_url":"https://github.com/levi106","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/levi106","events_url":"https://api.github.com/users/levi106/events{/privacy}","following_url":"https://api.github.com/users/levi106/following{/other_user}","followers_url":"https://api.github.com/users/levi106/followers","gists_url":"https://api.github.com/users/levi106/gists{/gist_id}","organizations_url":"https://api.github.com/users/levi106/orgs","received_events_url":"https://api.github.com/users/levi106/received_events","repos_url":"https://api.github.com/users/levi106/repos","starred_url":"https://api.github.com/users/levi106/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/levi106/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":164267785,"number":195,"state":"open","locked":false,"title":"Make console output visible for hclient in command line mode","body":"On Windows 7 using VS 2017 when using hclient no console output was visible. This patch makes the console output visible again.","created_at":"2018-01-22T10:17:37Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"jovermann","id":6087443,"node_id":"MDQ6VXNlcjYwODc0NDM=","avatar_url":"https://avatars.githubusercontent.com/u/6087443?v=4","html_url":"https://github.com/jovermann","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jovermann","events_url":"https://api.github.com/users/jovermann/events{/privacy}","following_url":"https://api.github.com/users/jovermann/following{/other_user}","followers_url":"https://api.github.com/users/jovermann/followers","gists_url":"https://api.github.com/users/jovermann/gists{/gist_id}","organizations_url":"https://api.github.com/users/jovermann/orgs","received_events_url":"https://api.github.com/users/jovermann/received_events","repos_url":"https://api.github.com/users/jovermann/repos","starred_url":"https://api.github.com/users/jovermann/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jovermann/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/195","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/195","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/195","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/06b8b226bcf70f1e2f5d92b80d7096bbda4173a4","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/195.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/195.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/195/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/195/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/195/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MTY0MjY3Nzg1","merge_commit_sha":"8ddf8d36322a69afcd38f03d571737b115ac0b25","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/195"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/195"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/195"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/195/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/195/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/195/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/06b8b226bcf70f1e2f5d92b80d7096bbda4173a4"}},"head":{"label":"jovermann:stdout-fix","ref":"stdout-fix","sha":"06b8b226bcf70f1e2f5d92b80d7096bbda4173a4","repo":{"id":117858169,"node_id":"MDEwOlJlcG9zaXRvcnkxMTc4NTgxNjk=","owner":{"login":"jovermann","id":6087443,"node_id":"MDQ6VXNlcjYwODc0NDM=","avatar_url":"https://avatars.githubusercontent.com/u/6087443?v=4","html_url":"https://github.com/jovermann","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jovermann","events_url":"https://api.github.com/users/jovermann/events{/privacy}","following_url":"https://api.github.com/users/jovermann/following{/other_user}","followers_url":"https://api.github.com/users/jovermann/followers","gists_url":"https://api.github.com/users/jovermann/gists{/gist_id}","organizations_url":"https://api.github.com/users/jovermann/orgs","received_events_url":"https://api.github.com/users/jovermann/received_events","repos_url":"https://api.github.com/users/jovermann/repos","starred_url":"https://api.github.com/users/jovermann/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jovermann/subscriptions"},"name":"Windows-driver-samples","full_name":"jovermann/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2018-01-17T15:54:40Z","pushed_at":"2018-01-22T10:15:58Z","updated_at":"2023-01-28T00:48:26Z","html_url":"https://github.com/jovermann/Windows-driver-samples","clone_url":"https://github.com/jovermann/Windows-driver-samples.git","git_url":"git://github.com/jovermann/Windows-driver-samples.git","ssh_url":"git@github.com:jovermann/Windows-driver-samples.git","svn_url":"https://github.com/jovermann/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":161734,"allow_forking":true,"web_commit_signoff_required":false,"archived":true,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/jovermann/Windows-driver-samples","archive_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"jovermann","id":6087443,"node_id":"MDQ6VXNlcjYwODc0NDM=","avatar_url":"https://avatars.githubusercontent.com/u/6087443?v=4","html_url":"https://github.com/jovermann","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jovermann","events_url":"https://api.github.com/users/jovermann/events{/privacy}","following_url":"https://api.github.com/users/jovermann/following{/other_user}","followers_url":"https://api.github.com/users/jovermann/followers","gists_url":"https://api.github.com/users/jovermann/gists{/gist_id}","organizations_url":"https://api.github.com/users/jovermann/orgs","received_events_url":"https://api.github.com/users/jovermann/received_events","repos_url":"https://api.github.com/users/jovermann/repos","starred_url":"https://api.github.com/users/jovermann/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jovermann/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":164262154,"number":194,"state":"open","locked":false,"title":"Fix segfault in FillDeviceInfo","body":"The loop over all buttonCaps erroneously references valueCaps fields which seems to be a cut/copy/paste error. This causes a segfault for my setup.","created_at":"2018-01-22T09:51:13Z","updated_at":"2022-04-20T20:53:15Z","user":{"login":"jovermann","id":6087443,"node_id":"MDQ6VXNlcjYwODc0NDM=","avatar_url":"https://avatars.githubusercontent.com/u/6087443?v=4","html_url":"https://github.com/jovermann","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jovermann","events_url":"https://api.github.com/users/jovermann/events{/privacy}","following_url":"https://api.github.com/users/jovermann/following{/other_user}","followers_url":"https://api.github.com/users/jovermann/followers","gists_url":"https://api.github.com/users/jovermann/gists{/gist_id}","organizations_url":"https://api.github.com/users/jovermann/orgs","received_events_url":"https://api.github.com/users/jovermann/received_events","repos_url":"https://api.github.com/users/jovermann/repos","starred_url":"https://api.github.com/users/jovermann/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jovermann/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/194","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/194","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/194","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/5013a07893597708e1ac218e4f9f25dcd5306bea","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/194.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/194.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/194/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/194/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/194/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0MTY0MjYyMTU0","merge_commit_sha":"9455a12be05618dee1d980633644bfb62cd90d9c","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/194"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/194"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/194"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/194/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/194/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/194/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/5013a07893597708e1ac218e4f9f25dcd5306bea"}},"head":{"label":"jovermann:master","ref":"master","sha":"5013a07893597708e1ac218e4f9f25dcd5306bea","repo":{"id":117858169,"node_id":"MDEwOlJlcG9zaXRvcnkxMTc4NTgxNjk=","owner":{"login":"jovermann","id":6087443,"node_id":"MDQ6VXNlcjYwODc0NDM=","avatar_url":"https://avatars.githubusercontent.com/u/6087443?v=4","html_url":"https://github.com/jovermann","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jovermann","events_url":"https://api.github.com/users/jovermann/events{/privacy}","following_url":"https://api.github.com/users/jovermann/following{/other_user}","followers_url":"https://api.github.com/users/jovermann/followers","gists_url":"https://api.github.com/users/jovermann/gists{/gist_id}","organizations_url":"https://api.github.com/users/jovermann/orgs","received_events_url":"https://api.github.com/users/jovermann/received_events","repos_url":"https://api.github.com/users/jovermann/repos","starred_url":"https://api.github.com/users/jovermann/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jovermann/subscriptions"},"name":"Windows-driver-samples","full_name":"jovermann/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2018-01-17T15:54:40Z","pushed_at":"2018-01-22T10:15:58Z","updated_at":"2023-01-28T00:48:26Z","html_url":"https://github.com/jovermann/Windows-driver-samples","clone_url":"https://github.com/jovermann/Windows-driver-samples.git","git_url":"git://github.com/jovermann/Windows-driver-samples.git","ssh_url":"git@github.com:jovermann/Windows-driver-samples.git","svn_url":"https://github.com/jovermann/Windows-driver-samples","language":"C","fork":true,"forks_count":0,"open_issues_count":0,"open_issues":0,"stargazers_count":0,"watchers_count":0,"watchers":0,"size":161734,"allow_forking":true,"web_commit_signoff_required":false,"archived":true,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/jovermann/Windows-driver-samples","archive_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/jovermann/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"jovermann","id":6087443,"node_id":"MDQ6VXNlcjYwODc0NDM=","avatar_url":"https://avatars.githubusercontent.com/u/6087443?v=4","html_url":"https://github.com/jovermann","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/jovermann","events_url":"https://api.github.com/users/jovermann/events{/privacy}","following_url":"https://api.github.com/users/jovermann/following{/other_user}","followers_url":"https://api.github.com/users/jovermann/followers","gists_url":"https://api.github.com/users/jovermann/gists{/gist_id}","organizations_url":"https://api.github.com/users/jovermann/orgs","received_events_url":"https://api.github.com/users/jovermann/received_events","repos_url":"https://api.github.com/users/jovermann/repos","starred_url":"https://api.github.com/users/jovermann/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jovermann/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}},{"id":61772789,"number":53,"state":"open","locked":false,"title":"ramdisk: Added device IO control support for Windows 10","body":"Added support for the following device IO control codes:\n- IOCTL_STORAGE_QUERY_PROPERTY\n- IOCTL_DISK_GET_LENGTH_INFO\n- IOCTL_MOUNTDEV_QUERY_DEVICE_NAME\n\nIssues addressed: #49 and #44 \n","created_at":"2016-03-04T21:18:45Z","updated_at":"2024-05-23T19:09:42Z","user":{"login":"tchaudev","id":11466569,"node_id":"MDQ6VXNlcjExNDY2NTY5","avatar_url":"https://avatars.githubusercontent.com/u/11466569?v=4","html_url":"https://github.com/tchaudev","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/tchaudev","events_url":"https://api.github.com/users/tchaudev/events{/privacy}","following_url":"https://api.github.com/users/tchaudev/following{/other_user}","followers_url":"https://api.github.com/users/tchaudev/followers","gists_url":"https://api.github.com/users/tchaudev/gists{/gist_id}","organizations_url":"https://api.github.com/users/tchaudev/orgs","received_events_url":"https://api.github.com/users/tchaudev/received_events","repos_url":"https://api.github.com/users/tchaudev/repos","starred_url":"https://api.github.com/users/tchaudev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tchaudev/subscriptions"},"draft":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/53","html_url":"https://github.com/microsoft/Windows-driver-samples/pull/53","issue_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/53","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/83d708d275dc9bbb59a097f02129c9056d3c0cfd","diff_url":"https://github.com/microsoft/Windows-driver-samples/pull/53.diff","patch_url":"https://github.com/microsoft/Windows-driver-samples/pull/53.patch","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/53/commits","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/53/comments","review_comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/53/comments","review_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}","author_association":"FIRST_TIME_CONTRIBUTOR","node_id":"MDExOlB1bGxSZXF1ZXN0NjE3NzI3ODk=","_links":{"self":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/53"},"html":{"href":"https://github.com/microsoft/Windows-driver-samples/pull/53"},"issue":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/53"},"comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/53/comments"},"review_comments":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/53/comments"},"review_comment":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls/53/commits"},"statuses":{"href":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/83d708d275dc9bbb59a097f02129c9056d3c0cfd"}},"head":{"label":"tchaudev:master","ref":"master","sha":"83d708d275dc9bbb59a097f02129c9056d3c0cfd","repo":{"id":53161256,"node_id":"MDEwOlJlcG9zaXRvcnk1MzE2MTI1Ng==","owner":{"login":"tchaudev","id":11466569,"node_id":"MDQ6VXNlcjExNDY2NTY5","avatar_url":"https://avatars.githubusercontent.com/u/11466569?v=4","html_url":"https://github.com/tchaudev","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/tchaudev","events_url":"https://api.github.com/users/tchaudev/events{/privacy}","following_url":"https://api.github.com/users/tchaudev/following{/other_user}","followers_url":"https://api.github.com/users/tchaudev/followers","gists_url":"https://api.github.com/users/tchaudev/gists{/gist_id}","organizations_url":"https://api.github.com/users/tchaudev/orgs","received_events_url":"https://api.github.com/users/tchaudev/received_events","repos_url":"https://api.github.com/users/tchaudev/repos","starred_url":"https://api.github.com/users/tchaudev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tchaudev/subscriptions"},"name":"Windows-driver-samples","full_name":"tchaudev/Windows-driver-samples","description":"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.","homepage":"","default_branch":"master","created_at":"2016-03-04T19:45:47Z","pushed_at":"2016-03-04T21:14:14Z","updated_at":"2024-04-22T15:31:55Z","html_url":"https://github.com/tchaudev/Windows-driver-samples","clone_url":"https://github.com/tchaudev/Windows-driver-samples.git","git_url":"git://github.com/tchaudev/Windows-driver-samples.git","ssh_url":"git@github.com:tchaudev/Windows-driver-samples.git","svn_url":"https://github.com/tchaudev/Windows-driver-samples","language":"C","fork":true,"forks_count":9,"open_issues_count":0,"open_issues":0,"stargazers_count":4,"watchers_count":4,"watchers":4,"size":81799,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":false,"has_wiki":true,"has_pages":false,"has_projects":true,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/tchaudev/Windows-driver-samples","archive_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/tchaudev/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"tchaudev","id":11466569,"node_id":"MDQ6VXNlcjExNDY2NTY5","avatar_url":"https://avatars.githubusercontent.com/u/11466569?v=4","html_url":"https://github.com/tchaudev","gravatar_id":"","type":"User","site_admin":false,"url":"https://api.github.com/users/tchaudev","events_url":"https://api.github.com/users/tchaudev/events{/privacy}","following_url":"https://api.github.com/users/tchaudev/following{/other_user}","followers_url":"https://api.github.com/users/tchaudev/followers","gists_url":"https://api.github.com/users/tchaudev/gists{/gist_id}","organizations_url":"https://api.github.com/users/tchaudev/orgs","received_events_url":"https://api.github.com/users/tchaudev/received_events","repos_url":"https://api.github.com/users/tchaudev/repos","starred_url":"https://api.github.com/users/tchaudev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tchaudev/subscriptions"}},"base":{"label":"microsoft:main","ref":"main","sha":"fcf72957a9e938aa102ca3241613b01eb4474abc","repo":{"id":31791482,"node_id":"MDEwOlJlcG9zaXRvcnkzMTc5MTQ4Mg==","owner":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"},"name":"Windows-driver-samples","full_name":"microsoft/Windows-driver-samples","description":"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.","homepage":"","default_branch":"main","created_at":"2015-03-06T22:16:09Z","pushed_at":"2026-02-12T18:26:21Z","updated_at":"2026-02-12T18:26:31Z","html_url":"https://github.com/microsoft/Windows-driver-samples","clone_url":"https://github.com/microsoft/Windows-driver-samples.git","git_url":"git://github.com/microsoft/Windows-driver-samples.git","ssh_url":"git@github.com:microsoft/Windows-driver-samples.git","svn_url":"https://github.com/microsoft/Windows-driver-samples","language":"C","fork":false,"forks_count":5031,"open_issues_count":120,"open_issues":120,"stargazers_count":7634,"watchers_count":7634,"watchers":7634,"size":166281,"allow_forking":true,"web_commit_signoff_required":false,"archived":false,"disabled":false,"license":{"key":"ms-pl","name":"Microsoft Public License","url":"https://api.github.com/licenses/ms-pl","spdx_id":"MS-PL"},"private":false,"has_issues":true,"has_wiki":false,"has_pages":false,"has_projects":false,"has_downloads":true,"has_discussions":false,"is_template":false,"url":"https://api.github.com/repos/microsoft/Windows-driver-samples","archive_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/{archive_format}{/ref}","assignees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/assignees{/user}","blobs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/blobs{/sha}","branches_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/branches{/branch}","collaborators_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/collaborators{/collaborator}","comments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/comments{/number}","commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/commits{/sha}","compare_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/compare/{base}...{head}","contents_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contents/{+path}","contributors_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/contributors","deployments_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/deployments","downloads_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/downloads","events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/events","forks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/forks","git_commits_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/commits{/sha}","git_refs_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/tags{/sha}","hooks_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/hooks","issue_comment_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/comments{/number}","issue_events_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues/events{/number}","issues_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/issues{/number}","keys_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/keys{/key_id}","labels_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/labels{/name}","languages_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/languages","merges_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/merges","milestones_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/milestones{/number}","notifications_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/notifications{?since,all,participating}","pulls_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/pulls{/number}","releases_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/releases{/id}","stargazers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/stargazers","statuses_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/statuses/{sha}","subscribers_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscribers","subscription_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/subscription","tags_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/tags","trees_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/git/trees{/sha}","teams_url":"https://api.github.com/repos/microsoft/Windows-driver-samples/teams","visibility":"public"},"user":{"login":"microsoft","id":6154722,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=","avatar_url":"https://avatars.githubusercontent.com/u/6154722?v=4","html_url":"https://github.com/microsoft","gravatar_id":"","type":"Organization","site_admin":false,"url":"https://api.github.com/users/microsoft","events_url":"https://api.github.com/users/microsoft/events{/privacy}","following_url":"https://api.github.com/users/microsoft/following{/other_user}","followers_url":"https://api.github.com/users/microsoft/followers","gists_url":"https://api.github.com/users/microsoft/gists{/gist_id}","organizations_url":"https://api.github.com/users/microsoft/orgs","received_events_url":"https://api.github.com/users/microsoft/received_events","repos_url":"https://api.github.com/users/microsoft/repos","starred_url":"https://api.github.com/users/microsoft/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/microsoft/subscriptions"}}}] \ No newline at end of file diff --git a/repo-tools/ai/copilot-skill.md b/repo-tools/ai/copilot-skill.md new file mode 100644 index 00000000..519ef78d --- /dev/null +++ b/repo-tools/ai/copilot-skill.md @@ -0,0 +1,60 @@ +--- +name: "Generate Issues & PR Dashboard" +description: | + Generates an HTML dashboard showing all open GitHub Issues and Pull Requests + for the Windows-driver-samples repository, grouped by the owning team from + .github/CODEOWNERS. Each item is assigned to exactly one team based on a + multi-layer context matching strategy: CODEOWNERS path keywords, repo + subdirectory scanning, section comment names, manual overrides + (extra_keywords.json), normalized matching (strips separators), and + word-boundary matching for short keywords. +steps: + - name: "Fetch GitHub data" + description: "Download open issues and PRs from GitHub REST API" + command: "python repo-tools/ai/fetch_github_data.py" + notes: | + - Set GITHUB_TOKEN env var for authenticated access (higher rate limit). + - Saves JSON files to repo-tools/ai/_data/. + - Use --repo flag to target a different repository. + + - name: "Generate dashboard" + description: "Build the HTML dashboard from fetched data and CODEOWNERS" + command: "python repo-tools/ai/generate_dashboard.py" + notes: | + - Parses .github/CODEOWNERS automatically for team definitions. + - HIGHEST PRIORITY: Extracts file/folder paths from issue/PR text and + matches them against CODEOWNERS rules (same last-match-wins as GitHub). + Shows "Detected Path" column in the dashboard. + - Falls back to keyword matching: path keywords, subdir scanning, + section comments, extra_keywords.json, normalized + word-boundary matching. + - Each issue/PR is assigned to exactly ONE team (most specific match). + - Output goes to repo-tools/ai/output/dashboard.html. + + - name: "Open dashboard" + description: "Open the generated HTML file in a browser" + command: "start repo-tools/ai/output/dashboard.html" + platform: "windows" + + - name: "Customize team keywords (optional)" + description: "Edit extra_keywords.json to add domain-specific terms" + file: "repo-tools/ai/extra_keywords.json" + notes: | + - Keys are CODEOWNERS team aliases (e.g. "display-kernel-devs"). + - Values are lists of additional keyword strings. + - Use this when issues mention technology names not in CODEOWNERS paths. + +output: + path: "repo-tools/ai/output/dashboard.html" + type: "html" + description: "Self-contained HTML dashboard with Issues tab, PRs tab, team filters, and search." + +parameters: + - name: "repo" + description: "Target GitHub repository in OWNER/REPO format" + default: "microsoft/Windows-driver-samples" + required: false + - name: "github_token" + description: "GitHub personal access token for API authentication" + env: "GITHUB_TOKEN" + required: false +--- diff --git a/repo-tools/ai/extra_keywords.json b/repo-tools/ai/extra_keywords.json new file mode 100644 index 00000000..b958befd --- /dev/null +++ b/repo-tools/ai/extra_keywords.json @@ -0,0 +1,13 @@ +{ + "_comment": "Manual keyword overrides for team classification. Add domain-specific terms here that are not derivable from CODEOWNERS paths or subdirectory names. Each key is a CODEOWNERS team alias; value is a list of additional keywords to match.", + "filesystems": ["fat"], + "display-kernel-devs": ["wddm", "kmdod", "display driver", "dxgkrnl"], + "coreos-buses-and-wdf": ["umdf", "kmdf", "wdf framework"], + "netsec": ["wfp", "wfpsampler"], + "windowsaudio": ["sysvad", "audio driver"], + "cameraplatdev": ["camera driver", "dmft"], + "ee-devs": ["power management"], + "connection-awareness": ["gnss driver", "radio manager"], + "consumer-storage": ["sd card", "smart card"], + "storage-core": ["nvme", "scsi"] +} diff --git a/repo-tools/ai/fetch_github_data.py b/repo-tools/ai/fetch_github_data.py new file mode 100644 index 00000000..8e3650cc --- /dev/null +++ b/repo-tools/ai/fetch_github_data.py @@ -0,0 +1,96 @@ +#!/usr/bin/env python3 +""" +fetch_github_data.py β€” Fetches open issues and PRs from a GitHub repo using +the GitHub REST API and saves them as JSON for generate_dashboard.py. + +Usage: + python fetch_github_data.py [--repo OWNER/REPO] [--output-dir DIR] + +Requires: + - GITHUB_TOKEN environment variable (for authenticated API access) + - OR works without auth for public repos (rate-limited to 60 req/hr) +""" + +import argparse +import json +import os +import sys +import urllib.request +import urllib.error +from pathlib import Path + +SCRIPT_DIR = Path(__file__).resolve().parent + + +def fetch_paginated(url: str, token: str | None = None) -> list[dict]: + """Fetch all pages from a GitHub REST API endpoint.""" + results = [] + page = 1 + while True: + sep = "&" if "?" in url else "?" + page_url = f"{url}{sep}page={page}&per_page=100&state=open" + req = urllib.request.Request(page_url) + req.add_header("Accept", "application/vnd.github+json") + req.add_header("User-Agent", "repo-tools-dashboard") + if token: + req.add_header("Authorization", f"Bearer {token}") + + try: + with urllib.request.urlopen(req) as resp: + data = json.loads(resp.read().decode("utf-8")) + except urllib.error.HTTPError as e: + print(f"❌ HTTP {e.code} fetching {page_url}: {e.reason}") + sys.exit(1) + + if not data: + break + results.extend(data) + if len(data) < 100: + break + page += 1 + print(f" Fetched page {page - 1} ({len(results)} items so far)") + + return results + + +def main(): + parser = argparse.ArgumentParser(description="Fetch GitHub issues and PRs as JSON.") + parser.add_argument("--repo", default="microsoft/Windows-driver-samples", + help="GitHub repo in OWNER/REPO format") + parser.add_argument("--output-dir", default=str(SCRIPT_DIR / "_data"), + help="Output directory for JSON files") + args = parser.parse_args() + + token = os.environ.get("GITHUB_TOKEN") + if not token: + print("⚠️ GITHUB_TOKEN not set. Using unauthenticated access (60 req/hr limit).") + + os.makedirs(args.output_dir, exist_ok=True) + base = f"https://api.github.com/repos/{args.repo}" + + # Fetch issues (the API returns PRs mixed in; filter them out) + print(f"πŸ“₯ Fetching open issues from {args.repo}...") + all_items = fetch_paginated(f"{base}/issues", token) + issues = [i for i in all_items if "pull_request" not in i] + print(f" βœ… {len(issues)} open issues") + + issues_path = os.path.join(args.output_dir, "issues.json") + with open(issues_path, "w", encoding="utf-8") as f: + json.dump({"issues": issues}, f, indent=2) + print(f" Saved to {issues_path}") + + # Fetch PRs + print(f"πŸ“₯ Fetching open PRs from {args.repo}...") + prs = fetch_paginated(f"{base}/pulls", token) + print(f" βœ… {len(prs)} open PRs") + + prs_path = os.path.join(args.output_dir, "prs.json") + with open(prs_path, "w", encoding="utf-8") as f: + json.dump(prs, f, indent=2) + print(f" Saved to {prs_path}") + + print("\nβœ… Data fetched. Run generate_dashboard.py to build the dashboard.") + + +if __name__ == "__main__": + main() diff --git a/repo-tools/ai/generate_dashboard.py b/repo-tools/ai/generate_dashboard.py new file mode 100644 index 00000000..a2512f3d --- /dev/null +++ b/repo-tools/ai/generate_dashboard.py @@ -0,0 +1,828 @@ +#!/usr/bin/env python3 +""" +generate_dashboard.py β€” Generates an Issues & PR dashboard for Windows-driver-samples. + +Parses .github/CODEOWNERS to build team-to-path mappings, reads GitHub issues +and PRs from JSON files (fetched separately), classifies each item to exactly +ONE team, and outputs a self-contained HTML dashboard. + +Usage: + python generate_dashboard.py [--issues ISSUES_JSON] [--prs PRS_JSON] [--codeowners PATH] [--output PATH] + +Defaults: + --issues _data/issues.json + --prs _data/prs.json + --codeowners ../../.github/CODEOWNERS + --output output/dashboard.html +""" + +import argparse +import json +import html as html_mod +import os +import re +import sys +from datetime import datetime, timezone +from pathlib import Path + +SCRIPT_DIR = Path(__file__).resolve().parent + + +# --------------------------------------------------------------------------- +# 1. Parse CODEOWNERS +# --------------------------------------------------------------------------- +def parse_codeowners(codeowners_path: str) -> tuple[dict[str, list[str]], dict[str, str], list[tuple[str, str]]]: + """ + Returns: + teams: {team_alias: [path1, path2, ...]} + sections: {team_alias: "Section Comment Name"} (from # comments above entries) + rules: [(pattern, team_alias), ...] in file order (last match wins, like GitHub) + """ + teams: dict[str, list[str]] = {} + sections: dict[str, str] = {} + rules: list[tuple[str, str]] = [] + current_comment = "" + with open(codeowners_path, "r", encoding="utf-8") as f: + for line in f: + stripped = line.strip() + if stripped.startswith("#"): + current_comment = stripped.lstrip("# ").strip() + continue + if not stripped: + continue + parts = stripped.split() + if len(parts) < 2: + continue + path_pattern = parts[0] + owner = parts[1] # e.g. @microsoft/bluetooth + alias = owner.lstrip("@").split("/", 1)[-1] # -> bluetooth + teams.setdefault(alias, []).append(path_pattern) + rules.append((path_pattern, alias)) + if current_comment and alias not in sections: + sections[alias] = current_comment + return teams, sections, rules + + +# --------------------------------------------------------------------------- +# CODEOWNERS path matcher β€” mirrors GitHub's matching logic +# --------------------------------------------------------------------------- +def _codeowners_pattern_to_regex(pattern: str) -> re.Pattern: + """ + Convert a CODEOWNERS glob pattern to a regex. + Rules (matching GitHub behavior): + - Leading / anchors to repo root; strip it for regex + - * matches anything except / + - ** matches anything including / + - Trailing / means directory and everything inside + """ + p = pattern + if p.startswith("/"): + p = p[1:] + if p.endswith("/"): + p = p + "**" + + parts = [] + i = 0 + while i < len(p): + if p[i:i+2] == "**": + parts.append(".*") + i += 2 + if i < len(p) and p[i] == "/": + i += 1 + elif p[i] == "*": + parts.append("[^/]*") + i += 1 + elif p[i] == "?": + parts.append("[^/]") + i += 1 + else: + parts.append(re.escape(p[i])) + i += 1 + + regex_str = "^" + "".join(parts) + if not pattern.endswith("*") and not pattern.endswith("/"): + regex_str += "(/.*)?$" + else: + regex_str += "$" + + return re.compile(regex_str, re.IGNORECASE) + + +def match_path_to_team(file_path: str, rules: list[tuple[str, str]]) -> str | None: + """ + Given a repo-relative file path, find the owning team using CODEOWNERS rules. + Last matching rule wins (GitHub behavior). + """ + # Normalize: strip leading / or ./ + fp = file_path + if fp.startswith("./"): + fp = fp[2:] + fp = fp.lstrip("/") + matched_team = None + for pattern, alias in rules: + regex = _codeowners_pattern_to_regex(pattern) + if regex.match(fp): + matched_team = alias + return matched_team + + +# --------------------------------------------------------------------------- +# File/folder path extraction from issue/PR text +# --------------------------------------------------------------------------- +_REPO_NAMES = ["windows-driver-samples", "Windows-driver-samples"] +_FILE_EXT_RE = r'\.(?:ps1|c|cpp|h|hpp|inf|vcxproj|sln|yml|yaml|md|txt|rc|def|inx|props|targets|csv|json|xml|mof)' + +_KNOWN_TOP_DIRS = [ + "audio", "avstream", "bluetooth", "filesys", "general", "gnss", "gpio", + "hid", "input", "network", "nfc", "nfp", "pofx", "pos", "powerlimit", + "print", "prm", "sd", "security", "sensors", "serial", "setup", "simbatt", + "smartcrd", "spb", "storage", "thermal", "tools", "TrEE", "usb", "video", + "wia", "wil", "wmi", "repo-tools", +] + + +def extract_paths(title: str, body: str | None) -> list[str]: + """ + Extract file and folder paths mentioned in issue/PR text. + + Strategies: + 1. GitHub blob/tree URLs β†’ repo-relative path + 2. Paths with known file extensions (e.g. Build-SampleSet.ps1) + 3. .github/ references (actions, workflows, CODEOWNERS) + 4. Known top-level directory paths (e.g. network/trans/WFPSampler) + 5. Title-embedded tree paths (e.g. Windows-driver-samples/tree/main/...) + + Returns deduplicated repo-relative paths (no leading /). + """ + text = (title or "") + "\n" + (body or "") + paths: list[str] = [] + + # 1. GitHub blob/tree URLs β€” ONLY from this repo (microsoft/Windows-driver-samples) + github_url_re = re.compile( + r'github\.com/microsoft/(?:' + '|'.join(re.escape(n) for n in _REPO_NAMES) + r')' + r'/(?:blob|tree)/[^/]+/([^\s#"\'<>\)]+)', + re.IGNORECASE, + ) + for m in github_url_re.finditer(text): + paths.append(m.group(1)) + + # 2. Paths with file extensions + file_path_re = re.compile( + r'(?:^|[\s`"\'(])([A-Za-z0-9_.][A-Za-z0-9_./\\-]*' + _FILE_EXT_RE + r')', + re.MULTILINE, + ) + for m in file_path_re.finditer(text): + candidate = m.group(1).replace("\\", "/").strip() + if ":" in candidate or candidate.startswith("http"): + continue + paths.append(candidate) + + # 3. .github/ references β€” only from this repo's context + github_dir_re = re.compile(r'(?:^|[\s`"\'(/])(\.[Gg]ithub/[^\s"\'<>\)]*)', re.MULTILINE) + for m in github_dir_re.finditer(text): + match_start = m.start() + preceding = text[max(0, match_start - 80):match_start] + if "github.com/" not in preceding or "Windows-driver-samples" in preceding: + paths.append(m.group(1)) + + # 4. GitHub Actions / CI references β€” only if title suggests this repo's CI + title_lower = (title or "").lower() + if any(kw in title_lower for kw in ["actions", "codeql", "workflow", "ci/cd", "pin "]): + paths.append(".github/workflows") + + # 5. Known top-level directory paths β€” skip if inside a URL from another repo + dir_re = re.compile( + r'(?:^|[\s`"\'(/])(' + + "|".join(re.escape(d) for d in _KNOWN_TOP_DIRS) + + r')/([A-Za-z0-9_./\\-]+)', + re.IGNORECASE | re.MULTILINE, + ) + for m in dir_re.finditer(text): + match_start = m.start() + preceding = text[max(0, match_start - 100):match_start] + if "github.com/" in preceding and "Windows-driver-samples" not in preceding: + continue + paths.append(m.group(1) + "/" + m.group(2)) + + # 6. Title contains "Windows-driver-samples/tree/..." pattern + title_tree_re = re.compile( + r'Windows-driver-samples/tree/[^/]+/(.+)', re.IGNORECASE + ) + tm = title_tree_re.search(title or "") + if tm: + paths.append(tm.group(1)) + + # Dedupe and normalize + seen: set[str] = set() + result: list[str] = [] + for p in paths: + p = p.replace("\\", "/").strip("/").rstrip(".") + # Strip tree/branch prefix if accidentally captured + tree_prefix = re.match(r'^tree/[^/]+/(.*)', p) + if tree_prefix: + p = tree_prefix.group(1) + if p and p not in seen: + seen.add(p) + result.append(p) + return result + + + +def _normalize(text: str) -> str: + """Strip spaces, hyphens, underscores, slashes for fuzzy matching.""" + return re.sub(r'[\s\-_/\\.]', '', text.lower()) + + +def _split_compound(word: str) -> list[str]: + """ + Split a compound path-leaf like 'wmiacpi' into possible sub-words + by inserting splits at known driver-domain boundaries. + """ + boundaries = [ + ('wmi', 'acpi'), ('wmi', 'samp'), ('system', 'dma'), + ('simple', 'media', 'source'), ('simple', 'audio', 'sample'), + ('net', 'vmini'), ('fast', 'fat'), ('mini', 'filter'), + ('bth', 'echo'), ('usb', 'view'), ('pcm', 'drv'), + ('pci', 'drv'), ('sim', 'batt'), ('power', 'limit'), + ('perf', 'counters'), ('smart', 'crd'), + ] + lower = word.lower() + for parts in boundaries: + if ''.join(parts) == lower: + return [' '.join(parts)] + return [] + + +# Minimum length for plain substring matching. Keywords shorter than this +# require word-boundary matching to avoid false positives (e.g. "pos" in "posted"). +_MIN_SUBSTR_LEN = 4 + +# Words too generic to be useful as classification keywords β€” these appear across +# many unrelated issues/PRs and cause false positives. +_STOPWORDS = frozenset({ + "general", "common", "samples", "sample", "driver", "drivers", "test", + "tests", "testing", "src", "inc", "lib", "docs", "readme", "build", + "change", "changes", "delete", "arm64", "x64", "x86", "amd64", + "func", "function", "data", "util", "utils", "config", "core", + "main", "app", "info", "help", "log", "logs", "debug", "release", + "shared", "public", "private", "internal", "version", "update", + "network", "filesys", "pofx", "wmi", # ambiguous parent dirs shared by multiple teams +}) + + +def _kw_matches_raw(kw: str, raw_text: str) -> bool: + """ + Check if keyword matches in raw text. Short keywords (< _MIN_SUBSTR_LEN) + use word-boundary regex to prevent false positives. + """ + if len(kw) < _MIN_SUBSTR_LEN: + return bool(re.search(r'\b' + re.escape(kw) + r'\b', raw_text)) + return kw in raw_text + + +def _scan_subdirs(repo_root: str, owned_paths: list[str]) -> list[str]: + """ + Scan the actual repo directory to find subdirectory names under each + CODEOWNERS-owned path. This captures sample names like 'KMDOD' under /video/. + Returns lowercased subdirectory names, filtered against stopwords. + """ + extra = [] + for p in owned_paths: + clean = p.strip("/") + if clean == "*" or clean.startswith("."): + continue + full = os.path.join(repo_root, clean.replace("/", os.sep)) + if os.path.isdir(full): + try: + for entry in os.listdir(full): + entry_path = os.path.join(full, entry) + if os.path.isdir(entry_path) and not entry.startswith("."): + name = entry.lower() + if name not in _STOPWORDS and len(name) >= _MIN_SUBSTR_LEN: + extra.append(name) + except OSError: + pass + return extra + + +def _is_useful_keyword(kw: str) -> bool: + """Filter out keywords that are stopwords or too generic.""" + return kw not in _STOPWORDS and len(kw) >= 3 + + +def build_keywords( + teams: dict[str, list[str]], sections: dict[str, str], + repo_root: str | None = None, + extra_keywords_path: str | None = None, +) -> dict[str, list[str]]: + """ + For each team, build a list of searchable keywords derived from: + 1. CODEOWNERS path entries (full path, leaf segment, normalized variants) + 2. Section comment names (e.g. "Device Enumeration and Interconnect") + 3. Subdirectory names under owned paths (if repo_root is provided) + 4. Manual overrides from extra_keywords.json (if provided) + + Keywords are filtered against a stopword list to prevent false positives + from generic terms like "general", "common", "test", etc. + """ + # Load manual keyword overrides + extra_kw: dict[str, list[str]] = {} + if extra_keywords_path and os.path.isfile(extra_keywords_path): + with open(extra_keywords_path, "r", encoding="utf-8") as f: + extra_kw = json.load(f) + print(f" Loaded extra keywords for {len(extra_kw)} teams from {extra_keywords_path}") + + keywords: dict[str, list[str]] = {} + for alias, paths in teams.items(): + kws: list[str] = [] + for p in paths: + clean = p.strip("/") + if clean == "*": + continue + # Full path as-is (e.g. "network/trans") β€” always useful regardless of stopwords + kws.append(clean.lower()) + # Leaf segment (e.g. "trans") + leaf = clean.rsplit("/", 1)[-1].lower() + if leaf and leaf != "*" and _is_useful_keyword(leaf): + kws.append(leaf) + for variant in _split_compound(leaf): + kws.append(variant) + + # Subdirectory names from the actual repo tree + if repo_root: + for subdir in _scan_subdirs(repo_root, paths): + kws.append(subdir) + + # Section comment as keyword + if alias in sections: + comment = sections[alias].lower() + if comment: + kws.append(comment) + + # Manual overrides from extra_keywords.json + if alias in extra_kw: + kws.extend(k.lower() for k in extra_kw[alias]) + + keywords[alias] = list(dict.fromkeys(kws)) # dedupe, preserve order + return keywords + + +# --------------------------------------------------------------------------- +# 2. Classify items β€” exactly ONE team per item +# --------------------------------------------------------------------------- +def classify_one( + title: str, + body: str | None, + team_keywords: dict[str, list[str]], + codeowners_rules: list[tuple[str, str]] | None = None, +) -> tuple[str, str | None]: + """ + Assign exactly one team to an issue/PR. + + Returns (team_alias, detected_path_or_None). + + Four-pass strategy (first match with highest specificity wins): + Pass 0 (highest): Extract file/folder paths from text, match them + against CODEOWNERS rules. Most specific (longest) path wins. + This is the most reliable signal β€” it's exactly how GitHub + assigns code owners. + Pass 1: Direct keyword match on raw text β€” short keywords use + word-boundary regex to prevent false positives. + Pass 2: Normalized match β€” strip whitespace/separators. + Pass 3: Default to 'driver-samples-maintainers'. + """ + # --- Pass 0: Path-based CODEOWNERS matching --- + detected_path = None + if codeowners_rules: + extracted = extract_paths(title, body) + best_path_team = None + best_path_len = 0 + best_path = None + for fp in extracted: + team = match_path_to_team(fp, codeowners_rules) + if team and len(fp) > best_path_len: + best_path_team = team + best_path_len = len(fp) + best_path = fp + if best_path_team: + detected_path = best_path + return best_path_team, detected_path + + # --- Pass 1 & 2: Keyword-based fallback --- + raw_text = ((title or "") + " " + (body or "")).lower() + norm_text = _normalize(raw_text) + + best_team = None + best_len = 0 + best_pass = 99 + + for alias, kws in team_keywords.items(): + if alias == "driver-samples-maintainers": + continue + for kw in kws: + kw_lower = kw.lower() + + # Pass 1: match in raw text (word-boundary for short keywords) + if _kw_matches_raw(kw_lower, raw_text): + if best_pass > 1 or (best_pass == 1 and len(kw_lower) > best_len): + best_team = alias + best_len = len(kw_lower) + best_pass = 1 + continue + + # Pass 2: normalized match + norm_kw = _normalize(kw_lower) + if len(norm_kw) >= _MIN_SUBSTR_LEN and norm_kw in norm_text: + if best_pass > 2 or (best_pass == 2 and len(norm_kw) > best_len): + best_team = alias + best_len = len(norm_kw) + best_pass = 2 + + return (best_team or "driver-samples-maintainers"), detected_path + + +# --------------------------------------------------------------------------- +# 3. Load data +# --------------------------------------------------------------------------- +def load_issues(path: str) -> list[dict]: + with open(path, "r", encoding="utf-8") as f: + data = json.load(f) + if isinstance(data, dict) and "issues" in data: + return data["issues"] + return data + + +def load_prs(path: str) -> list[dict]: + with open(path, "r", encoding="utf-8") as f: + return json.load(f) + + +# --------------------------------------------------------------------------- +# 4. HTML generation +# --------------------------------------------------------------------------- +PALETTE = [ + "#0078d4", "#107c10", "#d83b01", "#5c2d91", "#008272", + "#b4009e", "#004e8c", "#e3008c", "#986f0b", "#498205", + "#00b7c3", "#ca5010", "#4f6bed", "#847545", "#6b69d6", + "#038387", "#c30052", "#7a7574", "#0063b1", "#69797e", + "#744da9", "#da3b01", "#107c10", "#767676", "#c239b3", + "#00cc6a", "#ff8c00", "#e81123", +] + +LABEL_COLORS = { + "bug": "#d73a4a", + "question": "#d876e3", + "request": "#0075ca", + "help wanted": "#008672", +} + + +def generate_dashboard( + classified_issues: list[dict], + classified_prs: list[dict], + all_teams: list[str], + repo_url: str, + output_path: str, +): + team_colors = {} + for idx, team in enumerate(sorted(all_teams)): + team_colors[team] = PALETTE[idx % len(PALETTE)] + + def badge(team): + c = team_colors.get(team, "#6a737d") + return f'{html_mod.escape(team)}' + + def label_span(lbl): + c = LABEL_COLORS.get(lbl, "#6a737d") + return f'{html_mod.escape(lbl)}' + + def item_row(item): + labels_html = " ".join(label_span(l) for l in item["labels"]) + dp = item.get("detected_path") + path_html = ( + f'πŸ“ {html_mod.escape(dp)}' + if dp else 'keyword match' + ) + return ( + f'' + f'#{item["number"]}' + f'{html_mod.escape(item["title"])}' + f'
by {html_mod.escape(item["user"])}' + f"{badge(item['team'])}" + f"{path_html}" + f"{labels_html}" + ) + + # Team summary + team_issue_count = {} + team_pr_count = {} + for t in all_teams: + team_issue_count[t] = sum(1 for i in classified_issues if i["team"] == t) + team_pr_count[t] = sum(1 for p in classified_prs if p["team"] == t) + + # Cards + cards_html = "" + for team in sorted(all_teams): + ni = team_issue_count[team] + np_ = team_pr_count[team] + if ni == 0 and np_ == 0: + continue + c = team_colors.get(team, "#6a737d") + cards_html += f""" +
+
+
+
{html_mod.escape(team)}
+
+ πŸ”΄ {ni} issue{"s" if ni != 1 else ""} + 🟒 {np_} PR{"s" if np_ != 1 else ""} +
+
+
""" + + # Filter buttons + team_buttons = '\n' + for team in sorted(all_teams): + if team_issue_count.get(team, 0) + team_pr_count.get(team, 0) == 0: + continue + c = team_colors.get(team, "#6a737d") + team_buttons += ( + f'\n' + ) + + issue_rows = "\n".join( + item_row(i) for i in sorted(classified_issues, key=lambda x: x["number"], reverse=True) + ) + pr_rows = "\n".join( + item_row(p) for p in sorted(classified_prs, key=lambda x: x["number"], reverse=True) + ) + + now_str = datetime.now(timezone.utc).strftime("%Y-%m-%d %H:%M UTC") + + dashboard_html = f""" + + + + +Windows Driver Samples β€” Issues & PR Dashboard + + + +
+
+

πŸ“Š Windows Driver Samples Dashboard

+

Open Issues & Pull Requests by CODEOWNERS Team β€” {html_mod.escape(repo_url.replace("https://github.com/",""))}

+
+ +
+
{len(classified_issues)+len(classified_prs)}
Total Open Items
+
{len(classified_issues)}
Open Issues
+
{len(classified_prs)}
Open PRs
+
{len([t for t in all_teams if team_issue_count.get(t,0)+team_pr_count.get(t,0)>0])}
Active Teams
+
+ +
Teams Overview
+
{cards_html} +
+ +
Filter
+ +
{team_buttons}
+ + +
+
πŸ”΄ Issues ({len(classified_issues)})
+
🟒 Pull Requests ({len(classified_prs)})
+
+ +
+
+ + + {issue_rows} +
#TitleTeamDetected PathLabels
+
+ +
+
+ + + {pr_rows} +
#TitleTeamDetected PathLabels
+
+ +
+ Teams derived from .github/CODEOWNERS β€” each item assigned to one team by context matching
+ Generated on {now_str} +
+
+ + + +""" + + os.makedirs(os.path.dirname(output_path), exist_ok=True) + with open(output_path, "w", encoding="utf-8") as f: + f.write(dashboard_html) + print(f"βœ… Dashboard written to {output_path}") + + +# --------------------------------------------------------------------------- +# 5. Main +# --------------------------------------------------------------------------- +def main(): + parser = argparse.ArgumentParser( + description="Generate an Issues & PR dashboard grouped by CODEOWNERS teams." + ) + parser.add_argument("--issues", default=str(SCRIPT_DIR / "_data" / "issues.json"), + help="Path to issues JSON file") + parser.add_argument("--prs", default=str(SCRIPT_DIR / "_data" / "prs.json"), + help="Path to PRs JSON file") + parser.add_argument("--codeowners", default=str(SCRIPT_DIR / ".." / ".." / ".github" / "CODEOWNERS"), + help="Path to CODEOWNERS file") + parser.add_argument("--repo-root", default=str(SCRIPT_DIR / ".." / ".."), + help="Path to the repository root (for scanning subdirectories)") + parser.add_argument("--extra-keywords", default=str(SCRIPT_DIR / "extra_keywords.json"), + help="Path to extra_keywords.json for manual keyword overrides") + parser.add_argument("--output", default=str(SCRIPT_DIR / "output" / "dashboard.html"), + help="Output HTML path") + parser.add_argument("--repo-url", default="https://github.com/microsoft/Windows-driver-samples", + help="Repository URL for links") + args = parser.parse_args() + + # Parse CODEOWNERS + print(f"πŸ“‚ Parsing CODEOWNERS from {args.codeowners}") + teams, sections, codeowners_rules = parse_codeowners(args.codeowners) + repo_root = str(Path(args.repo_root).resolve()) + print(f" Scanning repo tree at {repo_root}") + team_keywords = build_keywords( + teams, sections, + repo_root=repo_root, + extra_keywords_path=args.extra_keywords, + ) + print(f" Found {len(teams)} teams, {len(codeowners_rules)} CODEOWNERS rules") + + # Load data + print(f"πŸ“₯ Loading issues from {args.issues}") + issues = load_issues(args.issues) + print(f" {len(issues)} open issues") + + print(f"πŸ“₯ Loading PRs from {args.prs}") + prs = load_prs(args.prs) + print(f" {len(prs)} open PRs") + + # Classify + print("🏷️ Classifying items (one team per item)...") + path_hits = 0 + classified_issues = [] + for i in issues: + team, detected_path = classify_one( + i["title"], i.get("body", ""), team_keywords, codeowners_rules + ) + labels = [l["name"] for l in i.get("labels", [])] + if detected_path: + path_hits += 1 + classified_issues.append({ + "number": i["number"], + "title": i["title"], + "team": team, + "labels": labels, + "user": i["user"]["login"], + "url": args.repo_url + "/issues/" + str(i["number"]), + "detected_path": detected_path, + }) + + classified_prs = [] + for pr in prs: + team, detected_path = classify_one( + pr["title"], pr.get("body", ""), team_keywords, codeowners_rules + ) + labels = [l["name"] for l in pr.get("labels", [])] + if detected_path: + path_hits += 1 + classified_prs.append({ + "number": pr["number"], + "title": pr["title"], + "team": team, + "labels": labels, + "user": pr["user"]["login"], + "url": args.repo_url + "/pull/" + str(pr["number"]), + "detected_path": detected_path, + }) + + print(f" πŸ“ {path_hits}/{len(classified_issues)+len(classified_prs)} items classified via detected file/folder path") + + all_teams = sorted(set(list(teams.keys()))) + + # Print summary + print("\nπŸ“Š Team breakdown:") + for t in sorted(all_teams): + ni = sum(1 for i in classified_issues if i["team"] == t) + np_ = sum(1 for p in classified_prs if p["team"] == t) + if ni + np_ > 0: + print(f" {t}: {ni} issues, {np_} PRs") + + # Generate + print(f"\nπŸ“ Generating dashboard...") + generate_dashboard(classified_issues, classified_prs, all_teams, args.repo_url, args.output) + + +if __name__ == "__main__": + main() diff --git a/repo-tools/ai/output/dashboard.html b/repo-tools/ai/output/dashboard.html new file mode 100644 index 00000000..898461b5 --- /dev/null +++ b/repo-tools/ai/output/dashboard.html @@ -0,0 +1,462 @@ + + + + + +Windows Driver Samples β€” Issues & PR Dashboard + + + +
+
+

πŸ“Š Windows Driver Samples Dashboard

+

Open Issues & Pull Requests by CODEOWNERS Team β€” microsoft/Windows-driver-samples

+
+ +
+
120
Total Open Items
+
38
Open Issues
+
82
Open PRs
+
17
Active Teams
+
+ +
Teams Overview
+
+
+
+
+
bluetooth
+
+ πŸ”΄ 1 issue + 🟒 0 PRs +
+
+
+
+
+
+
cameraplatdev
+
+ πŸ”΄ 1 issue + 🟒 3 PRs +
+
+
+
+
+
+
core-print
+
+ πŸ”΄ 0 issues + 🟒 1 PR +
+
+
+
+
+
+
coreos-buses-and-wdf
+
+ πŸ”΄ 12 issues + 🟒 11 PRs +
+
+
+
+
+
+
device-enumeration-and-interconnect
+
+ πŸ”΄ 1 issue + 🟒 0 PRs +
+
+
+
+
+
+
display-kernel-devs
+
+ πŸ”΄ 2 issues + 🟒 2 PRs +
+
+
+
+
+
+
driver-samples-maintainers
+
+ πŸ”΄ 5 issues + 🟒 42 PRs +
+
+
+
+
+
+
filesystems
+
+ πŸ”΄ 4 issues + 🟒 7 PRs +
+
+
+
+
+
+
filter-manager
+
+ πŸ”΄ 1 issue + 🟒 0 PRs +
+
+
+
+
+
+
kernel-core
+
+ πŸ”΄ 0 issues + 🟒 2 PRs +
+
+
+
+
+
+
netsec
+
+ πŸ”΄ 5 issues + 🟒 4 PRs +
+
+
+
+
+
+
network-driver-platform
+
+ πŸ”΄ 2 issues + 🟒 2 PRs +
+
+
+
+
+
+
pnp
+
+ πŸ”΄ 0 issues + 🟒 2 PRs +
+
+
+
+
+
+
sensors-platform
+
+ πŸ”΄ 0 issues + 🟒 1 PR +
+
+
+
+
+
+
storage-core
+
+ πŸ”΄ 1 issue + 🟒 2 PRs +
+
+
+
+
+
+
wi-fi-core
+
+ πŸ”΄ 2 issues + 🟒 2 PRs +
+
+
+
+
+
+
windowsaudio
+
+ πŸ”΄ 1 issue + 🟒 1 PR +
+
+
+
+ +
Filter
+ +
+ + + + + + + + + + + + + + + + + +
+ + +
+
πŸ”΄ Issues (38)
+
🟒 Pull Requests (82)
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#TitleTeamDetected PathLabels
#1342No console output for WFPSampler
by Nehluxhes
netsecπŸ“ network/trans/WFPSampler/lib/HelperFunctions_Log.cppquestion
#1338[network/trans/inspect]: ICMPv6 Ping not working!
by SinghNanak
netseckeyword matchquestion
#1330Revive Component Firmware Update (CFU) samples
by forderud
driver-samples-maintainerskeyword matchrequest
#1313ThrottleLimit calculation is incorrect on systems with more than one physical processor, breaking the build. (Added bonus: inf2cat travels through time to break the build)
by gsuberland
driver-samples-maintainersπŸ“ defect_toastmon.vcxprojbug
#1311spti does not recognize NVMe drives
by armaber
storage-corekeyword matchbug
#1290general/ioctl tips
by ZOL4789
coreos-buses-and-wdfkeyword matchquestion
#1287HID client driver sample?
by forderud
coreos-buses-and-wdfπŸ“ hid/minidriver-operationsquestion
#1279Pin tj-actions/changed-files to commit hash
by joebowbeer
driver-samples-maintainersπŸ“ .github/workflowsrequest
#1270KMDOD sample is broken and does not load
by osy
display-kernel-devskeyword matchbug
#1266Windows-driver-samples/tree/main/network/trans/stmedit
by jdaruja
netsecπŸ“ network/trans/stmeditquestion
#1265Capturing and Processing Audio from a Physical Microphone to a Virtual Mic (SimpleAudioSample)
by zardamhussain
windowsaudiokeyword matchquestion
#1249Change MiniFilter: Is the PreCreate operation comment correct?
by johnwallsmsft
filter-managerπŸ“ filesys/miniFilter/change/change.cquestion
#1243Missing Communication Ports Option on Windows 11 ARM
by kasperk81
coreos-buses-and-wdfkeyword matchquestion
#1197Wi-Fi: WiFiCx reference driver
by krish2718
wi-fi-corekeyword matchrequest
#1185USB Device Emulation (UDE) samples
by forderud
coreos-buses-and-wdfkeyword matchrequest
#1177[bluetooth/bthecho] Unable to build bthecho
by steam3d
bluetoothπŸ“ bluetooth/bthecho/bthcli/sys/BthEchoSampleCli.inxbug
#1146WMI ACPI object conversion rules
by Wer-Wolf
device-enumeration-and-interconnectkeyword matchquestion
#1077AVSSAMP example not working
by shiqifeng2000
cameraplatdevkeyword matchbug
#1070FAT should probably use CcSetFileSizes Ex
by rodwiddowson
filesystemskeyword matchrequest
#1034Recommended way of exposing WMI enums?
by forderud
coreos-buses-and-wdfπŸ“ general/toaster/toastDrv/kmdf/func/featured/toaster.mofquestion
#1025Reserved service name errors when building Toaster KMDF samples
by forderud
coreos-buses-and-wdfπŸ“ general/toaster/toastDrvbug
#1023Modernize filter drivers with AddFilter directive?
by forderud
network-driver-platformkeyword matchquestion
#1022Interest in modernizing the firefly sample?
by forderud
coreos-buses-and-wdfπŸ“ hid/firefly/driver/firefly.inxrequest
#1006Firefly driver always rebuilt (broken &#34;dirty&#34; check)
by forderud
coreos-buses-and-wdfπŸ“ hid/firefly/driverbug
#998UMDF filter driver sample for HID device?
by forderud
coreos-buses-and-wdfπŸ“ hid/fireflyquestion
#979FWPM_LAYER_ALE_CONNECT_REDIRECT_V4: Can&#39;t redirect to local proxy
by darind
netsecπŸ“ network/trans/WFPSamplerbug
#902Building XPSDrvSmpl VS Code 2019 Enterprise and Unable to install .INF
by mkhalid578
driver-samples-maintainersπŸ“ package.chelp wanted
#821[help] fastfat testing
by ivanstepanovftw
filesystemskeyword matchbug
#777usbview reports different USB device power state from device manager
by sdbbs
netseckeyword matchquestion
#773Sample WDDM driver
by DemiMarie
display-kernel-devskeyword matchrequest
#762No JobCopiesAllDocuments feature in the xps file generated by XpsDrvSmpl
by sylin211
driver-samples-maintainersπŸ“ Job_PT.xmlbug
#753FastFat can sometimes fail FilePositionInformation unnecessarily for read-only media
by AshwinTidke
filesystemsπŸ“ filesys/fastfat/verfysup.cbug
#4982004 Updates
by EatonZ
filesystemskeyword matchquestion
#362Retrieving PrintTicket for shared XPS driver failes (returns PrintTicket of local computer)
by wstaelens
network-driver-platformkeyword matchbug
#333Using SetupDiEnumDeviceInterfaces instead of symbolic links
by tonysepia
coreos-buses-and-wdfπŸ“ usb/usbview/enum.crequest
#239WDI Driver Usage for reference
by mrchsreddy
wi-fi-coreπŸ“ network/wlan/wdihelp wanted
#154Virtual HID Framework (VHF): need xample
by TronicLabs
coreos-buses-and-wdfkeyword matchrequest
#135More keyboard driver samples
by miloush
coreos-buses-and-wdfkeyword matchrequest
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#TitleTeamDetected PathLabels
#1345Remove references to non-existent WFPSamplerProxyService.exe
by riwaida
netseckeyword match
#1343Correct the buggy KMOD sample
by Spruill-1
driver-samples-maintainerskeyword match
#1339SDCA sample driver.
by saurinshah9
driver-samples-maintainerskeyword match
#1337WDKBatchBuild
by JakobL-MSFT
driver-samples-maintainerskeyword match
#1335Add SPDX license identifiers to source files
by rwmjones
sensors-platformkeyword match
#1329Test commit
by 5an7y-Microsoft
driver-samples-maintainerskeyword match
#1325Handling KSPROPERTY_CAMERACONTROL_EXTENDED_PROFILE on avscamera DMFT
by welljeng
cameraplatdevkeyword match
#1303FastFAT: Fix &#39;reqired&#39; typo, in a comment
by SergeGautherie
filesystemskeyword match
#1296Update exclusions.csv
by JakobL-MSFT
driver-samples-maintainersπŸ“ exclusions.c
#1295Update exclusions.csv
by JakobL-MSFT
driver-samples-maintainersπŸ“ exclusions.c
#1292Update README.md to use WIL
by jiteshkris
driver-samples-maintainersπŸ“ README.md
#1286Update HelperFunctions_RedirectData.cpp
by JakobL-MSFT
driver-samples-maintainersπŸ“ HelperFunctions_RedirectData.c
#1268Updated QFE for 3037 release
by ghost
driver-samples-maintainerskeyword match
#1222[usb/usbview] Fix memory leak when handling enumeration error cases
by dkala97
coreos-buses-and-wdfkeyword match
#1212Update Capture.cpp
by gerritsMSFT
driver-samples-maintainersπŸ“ Capture.c
#1205Update tdriver.c
by andreiminca
driver-samples-maintainersπŸ“ tdriver.c
#1203Replace IoCreateDevice to IoCreateDeviceSecure.
by riwaida
driver-samples-maintainersπŸ“ wdm.h
#1199Update userscan.c
by wqreytuk
driver-samples-maintainersπŸ“ userscan.c
#1198Update userscan.c
by wqreytuk
driver-samples-maintainersπŸ“ userscan.c
#1192AVS Camera AddComServer
by gerritsMSFT
driver-samples-maintainersπŸ“ AVSCamera.inx
#1187simbatt: Provide instructions for how to test the driver
by forderud
driver-samples-maintainersπŸ“ simbatt.c
#117551217363
by JakobL-MSFT
driver-samples-maintainerskeyword match
#1174FASTFAT: Remove erroneous comment
by HBelusca
filesystemskeyword match
#1173Update README.md
by GabeNI
driver-samples-maintainersπŸ“ README.md
#1155Support Occlusion Image in AvsCamera
by gerritsMSFT
cameraplatdevkeyword match
#1138Add support for ARM64 for network/wlan
by NeoAdonis
wi-fi-corekeyword match
#1137Draft of moving to NuGet PackageReference instead of packages.config
by JakobL-MSFT
network-driver-platformπŸ“ network/ndis/filter
#1121Draft - not to be completed - arm64 remaining samples and script
by JakobL-MSFT
driver-samples-maintainerskeyword match
#1116Pchahar/pc load letter6
by prashantchahar
driver-samples-maintainerskeyword match
#1114moufiltr: Mirror mouse movement
by forderud
coreos-buses-and-wdfkeyword match
#1113Build: Do not set target version
by JakobL-MSFT
driver-samples-maintainerskeyword match
#1112Add templates
by JakobL-MSFT
driver-samples-maintainerskeyword match
#1028[Toaster] Update notify, toast &amp; Enum project GUID references
by forderud
coreos-buses-and-wdfkeyword match
#1026Remove UMDF references from toastDrv readme
by forderud
coreos-buses-and-wdfkeyword match
#1020KMDOD: Correctly copy the DXGKRNL_INTERFACE structure
by MartinDrab
display-kernel-devskeyword match
#1007Firefly: Configure Inf2CatUseLocalTime to fix build failure right after midnight
by forderud
wi-fi-coreπŸ“ network/wlan/WDI/PLATFORM/NDIS6/SDIO/sdio.vcxproj
#999nullFilter: VS2022 compatibility and best practices by default
by olljanat
driver-samples-maintainersπŸ“ ntstrsafe.h
#997Modernize flicker app sources
by forderud
driver-samples-maintainerskeyword match
#995Firefly driver: Postpone variable definitions until first use
by forderud
coreos-buses-and-wdfπŸ“ hid/firefly/driver/vfeature.c
#935[avstream/sampledevicemft] Fix possible deadlock while changes output stream state
by jammgit
cameraplatdevkeyword match
#922Patch rare infinite loops when enumerating USB_COMMON_DESCRIPTORs
by alan-rowe
driver-samples-maintainerskeyword match
#913add missing PAGED_CODE() macro
by darwin-msft
filesystemsπŸ“ filesys/fastfat/dirsup.c
#860user-jakobl-CodeQL-Testing
by JakobL-MSFT
driver-samples-maintainersπŸ“ .github/workflows
#854IoStatus.Information should not be set on cleanup/close. Appears to b…
by jeffbromberger
driver-samples-maintainerskeyword match
#774[hid\hclient] Passing right arguments to reopen device for write
by DrInfiniteExplorer
coreos-buses-and-wdfkeyword match
#760Fix build issue in DCHU project
by andylsn
pnpkeyword match
#744Typo &#34;.VcxProj&#34;β†’&#34;.vcxproj&#34;
by hyoshioka0128
filesystemsπŸ“ filesys/fastfat/README.md
#690Update simple custom media sample
by vclin0
driver-samples-maintainersπŸ“ trace.h
#687Delete sub layer in case of failure
by AvivShabtay
kernel-corekeyword match
#651Initial publish of Print Support App sample
by takashi-moriyama
core-printkeyword match
#623User/maige/inspect sample fixes
by matthewige
netseckeyword match
#616[video\KMDOD]: Switch to ExAllocatePool2
by zeusk
display-kernel-devskeyword match
#604(USBView) Add MIDI device class support
by tendrils
coreos-buses-and-wdfkeyword match
#602uvcview.c: don&#39;t show the console in quiet mode
by imacovei
driver-samples-maintainersπŸ“ uvcview.c
#587input/layout: Fix settings application crash when selecting keyboard layout
by davidebeatrici
coreos-buses-and-wdfπŸ“ input/layout
#575Update main.cpp
by raikrahul
driver-samples-maintainersπŸ“ main.c
#538Fix WFPSampler build for SDK 10.0.19041.0
by darinkes
netseckeyword match
#528modify DelReg directive to refer correct section
by jesweare
storage-corekeyword match
#525NetVMini: Don&#39;t use the same values for statistics flags
by nxtn
network-driver-platformkeyword match
#524toastDrv/kmdf/filter/sideband: Ensure that queue event callbacks are run at PASSIVE_LEVEL
by ColinFinck
coreos-buses-and-wdfkeyword match
#521FastFAT: Add &#39;static&#39; to &#39;strcsup.c&#39; functions
by SergeGautherie
filesystemskeyword match
#518Encapsulate Power relation changes within SYSVAD_USB_SIDEBAND preproc…
by girishpattabiraman
windowsaudiokeyword match
#475wsksmple: Use ExAllocatePoolZero instead of ExAllocatePoolWithTag
by nigriMSFT
driver-samples-maintainerskeyword match
#460SFloppy: Fool-proof &#39;NUMBER_OF_DRIVE_MEDIA_COMBINATIONS&#39;
by SergeGautherie
driver-samples-maintainerskeyword match
#454Fix build failed
by o60816
kernel-corekeyword match
#451SFloppy: Clarify an &#39;if()&#39;
by SergeGautherie
driver-samples-maintainerskeyword match
#445Clean up some MAX_*
by SergeGautherie
driver-samples-maintainerskeyword match
#440Removed incorrect file handle check
by m417z
driver-samples-maintainerskeyword match
#431NULL pointer exception errors fixed
by JinZhuXing
driver-samples-maintainerskeyword match
#413User/dahung/camera sample diridfix
by dhung-msft
driver-samples-maintainerskeyword match
#381FastFAT: Check FASTFATDBG with #ifdef, not #if
by SergeGautherie
filesystemskeyword match
#380FastFAT: Check DBG with #if, not #ifdef
by SergeGautherie
filesystemskeyword match
#351Update clisrv.c
by SweatingEgg
driver-samples-maintainersπŸ“ clisrv.c
#350Update connection.c
by SweatingEgg
driver-samples-maintainersπŸ“ connection.c
#339Updated README.md to reflect changes made to the code
by tonysepia
driver-samples-maintainersπŸ“ README.md
#321Fixed some annotations and some incorrect accesses to possible null v…
by microkatz
driver-samples-maintainerskeyword match
#306Fix service handle not closed when StartService fails
by ixjf
driver-samples-maintainerskeyword match
#283Fix IOCTL_BTHX_READ/WRITE_HCI parameter sizes
by Googulator
coreos-buses-and-wdfkeyword match
#277wfpsampler: fix null reference
by levi106
netseckeyword match
#195Make console output visible for hclient in command line mode
by jovermann
coreos-buses-and-wdfkeyword match
#194Fix segfault in FillDeviceInfo
by jovermann
pnpkeyword match
#53ramdisk: Added device IO control support for Windows 10
by tchaudev
storage-corekeyword match
+
+ +
+ Teams derived from .github/CODEOWNERS β€” each item assigned to one team by context matching
+ Generated on 2026-02-12 23:03 UTC +
+
+ + + + \ No newline at end of file -- cgit v1.3.1