├── .gitattributes ├── .github ├── Build-with-GitHub.md ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── sample_issue.yml │ └── sample_issue_generator.py ├── scripts │ ├── Build-ChangedSamples.ps1 │ └── Join-CsvReports.ps1 └── workflows │ ├── Code-Scanning.yml │ ├── StaleIssues.yml │ ├── check-sample-issue-template.yml │ ├── ci-pr.yml │ ├── ci.yml │ └── tag-codeowner-on-issue.yml ├── .gitignore ├── .gitmodules ├── Build-AllSamples.ps1 ├── Build-Sample.ps1 ├── Build-SampleSet.ps1 ├── Building-Locally.md ├── Directory.Build.props ├── LICENSE ├── README.md ├── SECURITY.md ├── TrEE ├── Miniport │ ├── SampleMiniport.c │ ├── SampleMiniport.h │ ├── SampleMiniport.rc │ ├── TestService.c │ ├── TrEEMiniportSample.inf │ ├── TrEEMiniportSample.vcxproj │ └── TrEEMiniportSample.vcxproj.Filters ├── OSService │ ├── SampleOSService.c │ ├── SampleOSService.rc │ ├── TrEEOSServiceSample.inf │ ├── TrEEOSServiceSample.vcxproj │ └── TrEEOSServiceSample.vcxproj.Filters ├── README.md ├── Test │ ├── SampleTest.cpp │ ├── TrEESampleTest.vcxproj │ └── TrEESampleTest.vcxproj.Filters ├── TrEESample.sln └── inc │ ├── SampleOSService.h │ └── SampleSecureService.h ├── audio ├── Acx │ └── Samples │ │ ├── AudioCodec │ │ └── Driver │ │ │ ├── AudioCodec.inf │ │ │ ├── AudioCodec.sln │ │ │ ├── AudioCodec.vcxproj │ │ │ ├── AudioCodec.vcxproj.Filters │ │ │ ├── Device.cpp │ │ │ ├── Driver.cpp │ │ │ ├── DriverSettings.h │ │ │ ├── ReadMe.txt │ │ │ └── Resources.rc │ │ ├── Common │ │ ├── CaptureCircuit.cpp │ │ ├── CircuitHelper.cpp │ │ ├── CircuitHelper.h │ │ ├── KeywordDetector.cpp │ │ ├── KeywordDetector.h │ │ ├── NewDelete.cpp │ │ ├── NewDelete.h │ │ ├── Private.h │ │ ├── RenderCircuit.cpp │ │ ├── SamplesCommon.vcxproj │ │ ├── SaveData.cpp │ │ ├── SaveData.h │ │ ├── SimPeakMeter.cpp │ │ ├── SimPeakMeter.h │ │ ├── StreamEngine.cpp │ │ ├── StreamEngine.h │ │ ├── ToneGenerator.cpp │ │ ├── ToneGenerator.h │ │ ├── Trace_macros.h │ │ ├── WaveReader.cpp │ │ └── WaveReader.h │ │ ├── Inc │ │ ├── AudioFormats.h │ │ └── cpp_utils.h │ │ └── Shared │ │ ├── Public.h │ │ └── Trace.h ├── simpleaudiosample │ ├── Package │ │ ├── package.VcxProj │ │ └── package.VcxProj.Filters │ ├── README.md │ ├── SimpleAudioSample.sln │ └── Source │ │ ├── Filters │ │ ├── Filters.vcxproj │ │ ├── Filters.vcxproj.Filters │ │ ├── micarray1toptable.h │ │ ├── micarraytopo.cpp │ │ ├── micarraytopo.h │ │ ├── micarraywavtable.h │ │ ├── minipairs.h │ │ ├── speakertopo.cpp │ │ ├── speakertopo.h │ │ ├── speakertoptable.h │ │ └── speakerwavtable.h │ │ ├── Inc │ │ ├── Inc.vcxproj │ │ ├── Inc.vcxproj.Filters │ │ ├── NewDelete.h │ │ ├── basetopo.h │ │ ├── common.h │ │ ├── definitions.h │ │ ├── endpoints.h │ │ ├── kshelper.h │ │ └── mintopo.h │ │ ├── Main │ │ ├── Main.vcxproj │ │ ├── Main.vcxproj.Filters │ │ ├── NewDelete.cpp │ │ ├── SimpleAudioSample.inx │ │ ├── SimpleAudioSample.rc │ │ ├── adapter.cpp │ │ ├── basetopo.cpp │ │ ├── common.cpp │ │ ├── mintopo.cpp │ │ ├── minwavert.cpp │ │ ├── minwavert.h │ │ ├── minwavertstream.cpp │ │ └── minwavertstream.h │ │ └── Utilities │ │ ├── ToneGenerator.cpp │ │ ├── ToneGenerator.h │ │ ├── Utilities.vcxproj │ │ ├── Utilities.vcxproj.Filters │ │ ├── hw.cpp │ │ ├── hw.h │ │ ├── kshelper.cpp │ │ ├── savedata.cpp │ │ └── savedata.h ├── sysvad │ ├── A2dpHpDevice.cpp │ ├── A2dpHpDevice.h │ ├── APO │ │ ├── AecApo │ │ │ ├── AecApo.h │ │ │ ├── AecApo.png │ │ │ ├── AecApo.vcxproj │ │ │ ├── AecApo.vcxproj.Filters │ │ │ ├── AecApoDll.cpp │ │ │ ├── AecApoDll.def │ │ │ ├── AecApoDll.idl │ │ │ ├── AecApoDll.rc │ │ │ ├── AecApoDll.rgs │ │ │ ├── AecApoMfx.cpp │ │ │ ├── AecApoMfx.rgs │ │ │ └── Resource.h │ │ ├── DelayAPO │ │ │ ├── Delay.cpp │ │ │ ├── DelayAPO.h │ │ │ ├── DelayAPO.vcxproj │ │ │ ├── DelayAPO.vcxproj.Filters │ │ │ ├── DelayAPODll.cpp │ │ │ ├── DelayAPODll.def │ │ │ ├── DelayAPODll.idl │ │ │ ├── DelayAPODll.rc │ │ │ ├── DelayAPODll.rgs │ │ │ ├── DelayAPOInterface.idl │ │ │ ├── DelayAPOMFX.cpp │ │ │ ├── DelayAPOMFX.rgs │ │ │ ├── DelayAPOSFX.cpp │ │ │ ├── DelayAPOSFX.rgs │ │ │ ├── Resource.h │ │ │ └── delayapo.png │ │ ├── Inc │ │ │ ├── CommonMacros.h │ │ │ ├── CustomPropKeys.h │ │ │ └── tlist.h │ │ ├── KWSApo │ │ │ ├── KWSApo.cpp │ │ │ ├── KWSApo.h │ │ │ ├── KWSApo.png │ │ │ ├── KWSApo.vcxproj │ │ │ ├── KWSApo.vcxproj.Filters │ │ │ ├── KWSApoDll.cpp │ │ │ ├── KWSApoDll.def │ │ │ ├── KWSApoDll.idl │ │ │ ├── KWSApoDll.rc │ │ │ ├── KWSApoDll.rgs │ │ │ ├── KWSApoEfx.cpp │ │ │ ├── KWSApoEfx.rgs │ │ │ ├── KWSApoInterface.idl │ │ │ └── Resource.h │ │ └── SwapAPO │ │ │ ├── Resource.h │ │ │ ├── SwapAPO.h │ │ │ ├── SwapAPO.vcxproj │ │ │ ├── SwapAPO.vcxproj.Filters │ │ │ ├── SwapAPODll.cpp │ │ │ ├── SwapAPODll.def │ │ │ ├── SwapAPODll.idl │ │ │ ├── SwapAPODll.rc │ │ │ ├── SwapAPODll.rgs │ │ │ ├── SwapAPOInterface.idl │ │ │ ├── SwapAPOMFX.rgs │ │ │ ├── SwapAPOSFX.rgs │ │ │ ├── swap.cpp │ │ │ ├── swapapo.png │ │ │ ├── swapapomfx.cpp │ │ │ └── swapaposfx.cpp │ ├── BthhfpDevice.cpp │ ├── BthhfpDevice.h │ ├── ContosoKeywordDetector.h │ ├── EndpointsCommon │ │ ├── A2dpHpDeviceFormats.h │ │ ├── AudioModule0.h │ │ ├── AudioModule1.h │ │ ├── AudioModule2.h │ │ ├── AudioModuleHelper.cpp │ │ ├── AudioModuleHelper.h │ │ ├── EndpointsCommon.vcxproj │ │ ├── EndpointsCommon.vcxproj.Filters │ │ ├── MiniportAudioEngineNode.cpp │ │ ├── MiniportStreamAudioEngineNode.cpp │ │ ├── NewDelete.cpp │ │ ├── NewDelete.h │ │ ├── UsbHsDeviceFormats.h │ │ ├── a2dphpminipairs.h │ │ ├── a2dphpminwavert.cpp │ │ ├── a2dphpspeakertopo.cpp │ │ ├── a2dphpspeakertopo.h │ │ ├── a2dphpspeakertoptable.h │ │ ├── a2dphpspeakerwavtable.h │ │ ├── a2dphptopo.cpp │ │ ├── a2dphptopo.h │ │ ├── bthhfpmictopo.cpp │ │ ├── bthhfpmictopo.h │ │ ├── bthhfpmictoptable.h │ │ ├── bthhfpmicwavtable.h │ │ ├── bthhfpmicwbwavtable.h │ │ ├── bthhfpminipairs.h │ │ ├── bthhfpminwavert.cpp │ │ ├── bthhfpspeakertopo.cpp │ │ ├── bthhfpspeakertopo.h │ │ ├── bthhfpspeakertoptable.h │ │ ├── bthhfpspeakerwavtable.h │ │ ├── bthhfpspeakerwbwavtable.h │ │ ├── bthhfptopo.cpp │ │ ├── bthhfptopo.h │ │ ├── micarray1toptable.h │ │ ├── micarraytopo.cpp │ │ ├── micarraytopo.h │ │ ├── micarraywavtable.h │ │ ├── mintopo.cpp │ │ ├── mintopo.h │ │ ├── minwavert.cpp │ │ ├── minwavert.h │ │ ├── minwavertstream.cpp │ │ ├── minwavertstream.h │ │ ├── simple.h │ │ ├── speakerhptopo.cpp │ │ ├── speakerhptopo.h │ │ ├── speakerhptoptable.h │ │ ├── speakerhpwavtable.h │ │ ├── speakertopo.cpp │ │ ├── speakertopo.h │ │ ├── speakertoptable.h │ │ ├── speakerwavtable.h │ │ ├── usbhsmictopo.cpp │ │ ├── usbhsmictopo.h │ │ ├── usbhsmictoptable.h │ │ ├── usbhsmicwavtable.h │ │ ├── usbhsminipairs.h │ │ ├── usbhsminwavert.cpp │ │ ├── usbhsspeakertopo.cpp │ │ ├── usbhsspeakertopo.h │ │ ├── usbhsspeakertoptable.h │ │ ├── usbhsspeakerwavtable.h │ │ ├── usbhstopo.cpp │ │ └── usbhstopo.h │ ├── KeywordDetectorAdapter │ │ ├── KeywordDetectorContosoAdapter.cpp │ │ ├── KeywordDetectorContosoAdapter.def │ │ ├── KeywordDetectorContosoAdapter.idl │ │ ├── KeywordDetectorContosoAdapter.rc │ │ ├── KeywordDetectorContosoAdapter.vcxproj │ │ ├── KeywordDetectorContosoAdapter.vcxproj.Filters │ │ ├── dllmain.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Package │ │ ├── package.VcxProj │ │ └── package.VcxProj.Filters │ ├── README.md │ ├── SysVadShared.h │ ├── TabletAudioSample │ │ ├── ComponentizedApoSample.inx │ │ ├── ComponentizedAudioSample.inx │ │ ├── ComponentizedAudioSampleExtension.inx │ │ ├── TabletAudioSample.rc │ │ ├── TabletAudioSample.vcxproj │ │ ├── TabletAudioSample.vcxproj.Filters │ │ ├── hdmitopo.cpp │ │ ├── hdmitopo.h │ │ ├── hdmitoptable.h │ │ ├── hdmiwavtable.h │ │ ├── micarray2toptable.h │ │ ├── micarray2wavtable.h │ │ ├── micarray3toptable.h │ │ ├── micarray3wavtable.h │ │ ├── micintopo.cpp │ │ ├── micintopo.h │ │ ├── micintoptable.h │ │ ├── micinwavtable.h │ │ ├── minipairs.h │ │ ├── spdiftopo.cpp │ │ ├── spdiftopo.h │ │ ├── spdiftoptable.h │ │ └── spdifwavtable.h │ ├── ToneGenerator.cpp │ ├── ToneGenerator.h │ ├── UnittestData.h │ ├── UsbHsDevice.cpp │ ├── UsbHsDevice.h │ ├── adapter.cpp │ ├── basetopo.cpp │ ├── basetopo.h │ ├── common.cpp │ ├── common.h │ ├── hw.cpp │ ├── hw.h │ ├── ihvprivatepropertyset.h │ ├── kshelper.cpp │ ├── kshelper.h │ ├── savedata.cpp │ ├── savedata.h │ ├── sysvad.h │ └── sysvad.sln └── tests │ ├── HLK │ └── ThirdPartyApoTests │ │ ├── APODeviceTest.cpp │ │ ├── APODeviceTest.h │ │ ├── APOOSUpgradeTest.cpp │ │ ├── APOOSUpgradeTest.h │ │ ├── APOStressTest.cpp │ │ ├── APOStressTest.h │ │ ├── CAPXHelper.cpp │ │ ├── CAPXHelper.h │ │ ├── CAPXLoggingFrameworkTests.cpp │ │ ├── CAPXLoggingFrameworkTests.h │ │ ├── CAPXNotificationFrameworkTests.cpp │ │ ├── CAPXNotificationFrameworkTests.h │ │ ├── CAPXThreadingFrameworkTests.cpp │ │ ├── CAPXThreadingFrameworkTests.h │ │ ├── FormatHelpers.h │ │ ├── TestEffectsList.cpp │ │ ├── TestMediaType.cpp │ │ ├── TestMediaType.h │ │ ├── TestWasapiUseFromAudioDg.cpp │ │ ├── Wrappers.h │ │ ├── audioconnectionutil.h │ │ ├── sinewave.h │ │ └── stdafx.h │ ├── KSPosTst │ ├── KsPosTestTaef.cpp │ ├── KsPosTestTaef.h │ ├── PreComp.h │ ├── locallimits.h │ ├── pintest.cpp │ └── timetest.cpp │ ├── PinResourceHelpers │ ├── HalfApp.cpp │ ├── HalfApp.h │ ├── PreComp.h │ ├── PropertyHelper.cpp │ ├── PropertyHelper.h │ ├── TestResource.cpp │ ├── TestResource.h │ ├── TestResourceBuild.cpp │ └── TestResourceHelper.h │ └── wavetest │ ├── WaveTestTaef.cpp │ ├── WaveTestTaef.h │ ├── comptest.cpp │ └── pintest.cpp ├── avstream ├── avscamera │ ├── DMFT │ │ ├── AvsCameraDMFT.cpp │ │ ├── AvsCameraDMFT.h │ │ ├── AvsCameraDMFT.vcxproj │ │ ├── AvsCameraDMFT.vcxproj.Filters │ │ ├── AvsCameraDMFTutils.cpp │ │ ├── Source.def │ │ ├── basepin.cpp │ │ ├── basepin.h │ │ ├── common.h │ │ ├── dllmain.cpp │ │ ├── mftpeventgenerator.cpp │ │ ├── mftpeventgenerator.h │ │ ├── packages.config │ │ ├── stdafx.h │ │ └── stdafxsrc.cpp │ ├── Package │ │ ├── package.VcxProj │ │ └── package.VcxProj.Filters │ ├── README.md │ ├── avscamera.sln │ ├── common │ │ ├── CustomProperties.h │ │ ├── Macros.h │ │ └── MetadataInternal.h │ └── sys │ │ ├── AvsCamera.cpp │ │ ├── AvsCamera.rc │ │ ├── AvsCamera.vcxproj │ │ ├── AvsCamera.vcxproj.Filters │ │ ├── AvsCameraDevice.cpp │ │ ├── AvsCameraDevice.h │ │ ├── AvsCameraFilter.cpp │ │ ├── AvsCameraFilter.h │ │ ├── CameraProfile.h │ │ ├── CameraSimulatorCommon.h │ │ ├── Capture.cpp │ │ ├── Capture.h │ │ ├── Common.h │ │ ├── Dbg.h │ │ ├── Device.cpp │ │ ├── Device.h │ │ ├── ExtendedCameraAngleOffset.h │ │ ├── ExtendedEVComp.h │ │ ├── ExtendedFieldOfView.h │ │ ├── ExtendedMaxVideoFpsForPhotoRes.h │ │ ├── ExtendedMetadata.h │ │ ├── ExtendedPhotoMode.h │ │ ├── ExtendedProperty.h │ │ ├── ExtendedVidProcSetting.h │ │ ├── Mutex.cpp │ │ ├── Mutex.h │ │ ├── NV12Synthesizer.cpp │ │ ├── NV12Synthesizer.h │ │ ├── NonCopyable.h │ │ ├── PreviewHwSim.cpp │ │ ├── PreviewHwSim.h │ │ ├── RGB24Synthesizer.cpp │ │ ├── RGB24Synthesizer.h │ │ ├── Ref.h │ │ ├── Roi.cpp │ │ ├── Roi.h │ │ ├── Sensor.cpp │ │ ├── Sensor.h │ │ ├── SensorSimulation.cpp │ │ ├── SensorSimulation.h │ │ ├── Synthesizer.cpp │ │ ├── Synthesizer.h │ │ ├── Timer.cpp │ │ ├── Timer.h │ │ ├── Util.cpp │ │ ├── Util.h │ │ ├── VideoCapture.cpp │ │ ├── VideoCapture.h │ │ ├── VideoHwSim.cpp │ │ ├── VideoHwSim.h │ │ ├── Waitable.cpp │ │ ├── Waitable.h │ │ ├── WorkItem.cpp │ │ ├── WorkItem.h │ │ ├── XRGBSynthesizer.cpp │ │ ├── XRGBSynthesizer.h │ │ ├── YUVSynthesizer.cpp │ │ ├── YUVSynthesizer.h │ │ ├── YUY2Synthesizer.cpp │ │ ├── YUY2Synthesizer.h │ │ ├── avscamera.inx │ │ ├── filter.cpp │ │ ├── filter.h │ │ ├── formats.cpp │ │ ├── formats.h │ │ ├── hwsim.cpp │ │ ├── hwsim.h │ │ ├── imagecapture.cpp │ │ ├── imagecapture.h │ │ ├── imagehwsim.cpp │ │ └── imagehwsim.h ├── avshws │ ├── README.md │ ├── avshws.h │ ├── avshws.inx │ ├── avshws.rc │ ├── avshws.sln │ ├── avshws.vcxproj │ ├── avshws.vcxproj.Filters │ ├── capture.cpp │ ├── capture.h │ ├── device.cpp │ ├── device.h │ ├── filter.cpp │ ├── filter.h │ ├── hwsim.cpp │ ├── hwsim.h │ ├── image.cpp │ ├── image.h │ ├── makefile │ └── purecall.c ├── avssamp │ ├── Filter.cpp │ ├── README.md │ ├── audio.cpp │ ├── audio.h │ ├── avssamp.cpp │ ├── avssamp.h │ ├── avssamp.inx │ ├── avssamp.rc │ ├── avssamp.sln │ ├── avssamp.vcxproj │ ├── avssamp.vcxproj.Filters │ ├── capture.cpp │ ├── capture.h │ ├── filter.h │ ├── image.cpp │ ├── image.h │ ├── makefile │ ├── purecall.c │ ├── video.cpp │ ├── video.h │ ├── wave.cpp │ └── wave.h ├── sampledevicemft │ ├── README.md │ ├── SampleDeviceMft.sln │ ├── SampleSocDeviceMFT.cpp │ ├── SampleSocDeviceMFT.h │ ├── SampleSocDeviceMFTutils.cpp │ ├── Source.def │ ├── basepin.cpp │ ├── basepin.h │ ├── common.h │ ├── contosodevice.h │ ├── custompin.cpp │ ├── custompin.h │ ├── dllmain.cpp │ ├── mftpeventgenerator.cpp │ ├── mftpeventgenerator.h │ ├── multipinmft.cpp │ ├── multipinmft.h │ ├── multipinmft.vcxproj │ ├── multipinmft.vcxproj.Filters │ ├── multipinmfthelpers.cpp │ ├── multipinmfthelpers.h │ ├── multipinmftutils.cpp │ ├── packages.config │ ├── stdafx.h │ └── stdafxsrc.cpp └── samplemft0 │ ├── Mft0.cpp │ ├── Mft0.h │ ├── Mft0.rgs │ ├── Package │ ├── package.vcxproj │ └── package.vcxproj.Filters │ ├── README.md │ ├── SampleHelpers.h │ ├── SampleMft0.cpp │ ├── SampleMft0.def │ ├── SampleMft0.idl │ ├── SampleMft0.rc │ ├── SampleMft0.rgs │ ├── SampleMft0.sln │ ├── SampleMft0.vcxproj │ ├── SampleMft0.vcxproj.Filters │ ├── dllmain.cpp │ ├── dllmain.h │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── stdafxsrc.cpp │ └── targetver.h ├── bluetooth ├── bthecho │ ├── README.md │ ├── bthcli │ │ ├── app │ │ │ ├── BthEcho.vcxproj │ │ │ ├── BthEcho.vcxproj.Filters │ │ │ └── main.cpp │ │ └── sys │ │ │ ├── BthEchoSampleCli.inx │ │ │ ├── BthEchoSampleCli.vcxproj │ │ │ ├── BthEchoSampleCli.vcxproj.Filters │ │ │ ├── client.c │ │ │ ├── client.h │ │ │ ├── device.c │ │ │ ├── device.h │ │ │ ├── driver.c │ │ │ ├── driver.h │ │ │ ├── queue.c │ │ │ └── queue.h │ ├── bthecho.sln │ ├── bthsrv │ │ ├── inst │ │ │ ├── bthsrvinst.vcxproj │ │ │ ├── bthsrvinst.vcxproj.Filters │ │ │ └── main.cpp │ │ └── sys │ │ │ ├── BthEchoSampleSrv.inx │ │ │ ├── BthEchoSampleSrv.vcxproj │ │ │ ├── BthEchoSampleSrv.vcxproj.Filters │ │ │ ├── device.c │ │ │ ├── device.h │ │ │ ├── driver.c │ │ │ ├── driver.h │ │ │ ├── echo.c │ │ │ ├── echo.h │ │ │ ├── sdp.c │ │ │ ├── sdp.h │ │ │ ├── server.c │ │ │ └── server.h │ └── common │ │ ├── inc │ │ ├── clisrv.h │ │ ├── connection.h │ │ ├── public.h │ │ └── trace.h │ │ └── lib │ │ ├── bthecho.vcxproj │ │ ├── bthecho.vcxproj.Filters │ │ ├── clisrv.c │ │ └── connection.c └── serialhcibus │ ├── Fdo.c │ ├── Io.h │ ├── README.md │ ├── WDK │ ├── Debugdef.h │ ├── SerialBusWdk.inx │ ├── SerialBusWdk.vcxproj │ ├── SerialBusWdk.vcxproj.Filters │ ├── device.c │ ├── device.h │ └── driver.rc │ ├── driver.c │ ├── driver.h │ ├── io.c │ ├── pdo.c │ ├── public.h │ └── serialhcibus.sln ├── configuration.dsc.yaml ├── configuration_vsonly.dsc.yaml ├── exclusions.csv ├── filesys ├── cdfs │ ├── README.md │ ├── allocsup.c │ ├── cachesup.c │ ├── cd.h │ ├── cddata.c │ ├── cddata.h │ ├── cdfs.rc │ ├── cdfs.sln │ ├── cdfs.vcxproj │ ├── cdfs.vcxproj.Filters │ ├── cdinit.c │ ├── cdprocs.h │ ├── cdprocssrc.c │ ├── cdstruc.h │ ├── cleanup.c │ ├── close.c │ ├── create.c │ ├── devctrl.c │ ├── deviosup.c │ ├── dirctrl.c │ ├── dirsup.c │ ├── fieldoff.c │ ├── fileinfo.c │ ├── filobsup.c │ ├── fsctrl.c │ ├── fspdisp.c │ ├── lockctrl.c │ ├── namesup.c │ ├── nodetype.h │ ├── pathsup.c │ ├── pnp.c │ ├── prefxsup.c │ ├── read.c │ ├── resrcsup.c │ ├── shutdown.c │ ├── strucsup.c │ ├── verfysup.c │ ├── volinfo.c │ ├── workque.c │ └── write.c ├── fastfat │ ├── README.md │ ├── acchksup.c │ ├── allocsup.c │ ├── cachesup.c │ ├── cleanup.c │ ├── close.c │ ├── create.c │ ├── devctrl.c │ ├── deviosup.c │ ├── dirctrl.c │ ├── dirsup.c │ ├── dumpsup.c │ ├── ea.c │ ├── easup.c │ ├── fastfat.rc │ ├── fastfat.sln │ ├── fastfat.vcxproj │ ├── fastfat.vcxproj.Filters │ ├── fat.h │ ├── fatdata.c │ ├── fatdata.h │ ├── fatinit.c │ ├── fatprocs.h │ ├── fatprocssrc.c │ ├── fatstruc.h │ ├── fileinfo.c │ ├── filobsup.c │ ├── flush.c │ ├── fsctrl.c │ ├── fspdisp.c │ ├── lfn.h │ ├── lockctrl.c │ ├── namesup.c │ ├── nodetype.h │ ├── pnp.c │ ├── read.c │ ├── resrcsup.c │ ├── shutdown.c │ ├── splaysup.c │ ├── strucsup.c │ ├── timesup.c │ ├── verfysup.c │ ├── volinfo.c │ ├── workque.c │ └── write.c └── miniFilter │ ├── MetadataManager │ ├── DataStore.c │ ├── MetadataManager.rc │ ├── MetadataManager.sln │ ├── MetadataManagerInit.c │ ├── MetadataManagerProc.h │ ├── MetadataManagerStruc.h │ ├── README.md │ ├── fmm.inf │ ├── fmm.vcxproj │ ├── fmm.vcxproj.Filters │ ├── operations.c │ ├── pch.h │ └── support.c │ ├── NameChanger │ ├── NameChanger.inf │ ├── NameChanger.sln │ ├── NameChanger.vcxproj │ ├── NameChanger.vcxproj.Filters │ ├── README.md │ ├── nc.c │ ├── nc.h │ ├── nc.rc │ ├── nccompat.c │ ├── nccontext.c │ ├── nccreate.c │ ├── ncdirenum.c │ ├── ncdirnotify.c │ ├── ncfileinfo.c │ ├── ncfsctrl.c │ ├── nchelper.c │ ├── ncinit.c │ ├── ncmapping.c │ ├── ncnameprov.c │ ├── ncoffsets.c │ └── ncpath.c │ ├── avscan │ ├── README.md │ ├── avscan.inf │ ├── avscan.sln │ ├── filter │ │ ├── avscan.c │ │ ├── avscan.h │ │ ├── avscan.rc │ │ ├── avscan.vcxproj │ │ ├── avscan.vcxproj.Filters │ │ ├── communication.c │ │ ├── context.c │ │ ├── context.h │ │ ├── csvfs.c │ │ ├── csvfs.h │ │ ├── scan.c │ │ ├── scan.h │ │ ├── utility.c │ │ └── utility.h │ ├── inc │ │ └── avlib.h │ └── user │ │ ├── avscan.c │ │ ├── avscan.rc │ │ ├── avscan.vcxproj │ │ ├── avscan.vcxproj.Filters │ │ ├── userscan.c │ │ ├── userscan.h │ │ ├── utility.c │ │ └── utility.h │ ├── cancelSafe │ ├── README.md │ ├── cancelSafe.c │ ├── cancelSafe.inf │ ├── cancelSafe.rc │ ├── cancelSafe.sln │ ├── cancelSafe.vcxproj │ └── cancelSafe.vcxproj.Filters │ ├── cdo │ ├── Cdo.rc │ ├── CdoInit.c │ ├── CdoOperations.c │ ├── CdoProc.h │ ├── CdoStruct.h │ ├── README.md │ ├── cdo.inf │ ├── cdo.sln │ ├── cdo.vcxproj │ ├── cdo.vcxproj.Filters │ └── pch.h │ ├── change │ ├── README.md │ ├── change.c │ ├── change.h │ ├── change.inf │ ├── change.rc │ ├── change.sln │ ├── change.vcxproj │ ├── change.vcxproj.Filters │ ├── context.c │ ├── context.h │ └── utility.h │ ├── ctx │ ├── CtxInit.c │ ├── CtxProc.h │ ├── CtxStruc.h │ ├── README.md │ ├── context.c │ ├── ctx.inf │ ├── ctx.rc │ ├── ctx.sln │ ├── ctx.vcxproj │ ├── ctx.vcxproj.Filters │ ├── operations.c │ ├── pch.h │ └── support.c │ ├── delete │ ├── README.md │ ├── delete.c │ ├── delete.inf │ ├── delete.rc │ ├── delete.sln │ ├── delete.vcxproj │ └── delete.vcxproj.Filters │ ├── minispy │ ├── README.md │ ├── filter │ │ ├── RegistrationData.c │ │ ├── minispy.c │ │ ├── minispy.rc │ │ ├── minispy.vcxproj │ │ ├── minispy.vcxproj.Filters │ │ ├── mspyKern.h │ │ └── mspyLib.c │ ├── inc │ │ └── minispy.h │ ├── minispy.inf │ ├── minispy.sln │ └── user │ │ ├── minispy.vcxproj │ │ ├── minispy.vcxproj.Filters │ │ ├── mspyLog.c │ │ ├── mspyLog.h │ │ ├── mspyUser.c │ │ └── mspyUser.rc │ ├── nullFilter │ ├── README.md │ ├── nullFilter.c │ ├── nullFilter.inf │ ├── nullFilter.rc │ ├── nullFilter.sln │ ├── nullFilter.vcxproj │ └── nullFilter.vcxproj.Filters │ ├── passThrough │ ├── README.md │ ├── passThrough.c │ ├── passThrough.inf │ ├── passThrough.rc │ ├── passThrough.sln │ ├── passThrough.vcxproj │ └── passThrough.vcxproj.Filters │ ├── scanner │ ├── README.md │ ├── filter │ │ ├── scanner.c │ │ ├── scanner.h │ │ ├── scanner.rc │ │ ├── scanner.vcxproj │ │ └── scanner.vcxproj.Filters │ ├── inc │ │ └── scanuk.h │ ├── scanner.inf │ ├── scanner.sln │ └── user │ │ ├── scanUser.c │ │ ├── scanUser.rc │ │ ├── scanuser.h │ │ ├── scanuser.vcxproj │ │ └── scanuser.vcxproj.Filters │ ├── simrep │ ├── README.md │ ├── simrep.c │ ├── simrep.inf │ ├── simrep.rc │ ├── simrep.sln │ ├── simrep.vcxproj │ └── simrep.vcxproj.Filters │ └── swapBuffers │ ├── README.md │ ├── swapBuffers.c │ ├── swapBuffers.inf │ ├── swapBuffers.rc │ ├── swapBuffers.sln │ ├── swapBuffers.vcxproj │ └── swapBuffers.vcxproj.Filters ├── general ├── DCHU │ ├── README.md │ ├── osrfx2_DCHU_base │ │ ├── deviceMetadata │ │ │ └── B4D697F5-1C56-4807-ACCD-B28C09D37FF0.devicemetadata-ms │ │ ├── inc │ │ │ ├── prototypes.h │ │ │ └── public.h │ │ ├── osrfx2_DCHU_base.sln │ │ ├── osrfx2_DCHU_base │ │ │ ├── Interrupt.c │ │ │ ├── bulkrwr.c │ │ │ ├── device.c │ │ │ ├── driver.c │ │ │ ├── ioctl.c │ │ │ ├── osrfx2_DCHU_base.Filters │ │ │ ├── osrfx2_DCHU_base.inx │ │ │ ├── osrfx2_DCHU_base.vcxproj │ │ │ ├── osrusbfx2.h │ │ │ ├── osrusbfx2.man │ │ │ ├── osrusbfx2.rc │ │ │ └── trace.h │ │ ├── osrfx2_DCHU_filter │ │ │ ├── filter.c │ │ │ ├── filter.h │ │ │ ├── filter.rc │ │ │ ├── osrfx2_DCHU_filter.Filters │ │ │ └── osrfx2_DCHU_filter.vcxproj │ │ ├── osrfx2_DCHU_testapp │ │ │ ├── dump.c │ │ │ ├── osrfx2_DCHU_testapp.Filters │ │ │ ├── osrfx2_DCHU_testapp.vcxproj │ │ │ ├── osrusbfx2.vcxproj │ │ │ ├── test.cmd │ │ │ ├── testapp.c │ │ │ └── testapp.rc │ │ └── osrfx2_DCHU_usersvc │ │ │ ├── DeviceContext.cpp │ │ │ ├── DeviceContext.h │ │ │ ├── DeviceControl.cpp │ │ │ ├── DeviceControl.h │ │ │ ├── ServiceWin32API.cpp │ │ │ ├── ServiceWin32API.h │ │ │ ├── osrfx2_DCHU_usersvc.filters │ │ │ ├── osrfx2_DCHU_usersvc.vcxproj │ │ │ └── stdafx.h │ ├── osrfx2_DCHU_extension_loose │ │ ├── osrfx2_DCHU_component │ │ │ ├── osrfx2_DCHU_component.filters │ │ │ ├── osrfx2_DCHU_component.inx │ │ │ └── osrfx2_DCHU_component.vcxproj │ │ ├── osrfx2_DCHU_componentsoftware │ │ │ ├── osrfx2_DCHU_componentsoftware.cpp │ │ │ ├── osrfx2_DCHU_componentsoftware.filters │ │ │ ├── osrfx2_DCHU_componentsoftware.vcxproj │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── osrfx2_DCHU_extension.sln │ │ └── osrfx2_DCHU_extension │ │ │ ├── osrfx2_DCHU_extension.filters │ │ │ ├── osrfx2_DCHU_extension.inx │ │ │ └── osrfx2_DCHU_extension.vcxproj │ └── osrfx2_DCHU_extension_tight │ │ ├── osrfx2_DCHU_component │ │ └── osrfx2_DCHU_component.inx │ │ ├── osrfx2_DCHU_componentsoftware │ │ ├── osrfx2_DCHU_componentsoftware.cpp │ │ ├── osrfx2_DCHU_componentsoftware.filters │ │ ├── osrfx2_DCHU_componentsoftware.vcxproj │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ │ ├── osrfx2_DCHU_extension.sln │ │ └── osrfx2_DCHU_extension │ │ ├── osrfx2_DCHU_extension.filters │ │ ├── osrfx2_DCHU_extension.inx │ │ └── osrfx2_DCHU_extension.vcxproj ├── PLX9x5x │ ├── PLX9x5x.sln │ ├── README.md │ ├── sys │ │ ├── Control.c │ │ ├── Init.c │ │ ├── IsrDpc.c │ │ ├── Pci9656.c │ │ ├── Pci9656.h │ │ ├── Pci9656.rc │ │ ├── Pci9x5x.vcxproj │ │ ├── Pci9x5x.vcxproj.Filters │ │ ├── Precomp.h │ │ ├── Private.h │ │ ├── Public.h │ │ ├── Read.c │ │ ├── Reg9656.h │ │ ├── Write.c │ │ ├── pci9x5x.inx │ │ ├── precompsrc.c │ │ └── trace.h │ └── test │ │ ├── plx.cpp │ │ ├── plx.hpp │ │ ├── plx.vcxproj │ │ ├── plx.vcxproj.Filters │ │ └── test.cmd ├── SimpleMediaSource │ ├── MediaSource │ │ ├── MediaSource.vcxproj │ │ ├── MediaSource.vcxproj.filters │ │ ├── SimpleFrameGenerator.cpp │ │ ├── SimpleFrameGenerator.h │ │ ├── SimpleMediaSource.cpp │ │ ├── SimpleMediaSource.h │ │ ├── SimpleMediaSourceActivate.cpp │ │ ├── SimpleMediaSourceActivate.h │ │ ├── SimpleMediaStream.cpp │ │ ├── SimpleMediaStream.h │ │ ├── dllMain.cpp │ │ ├── module.def │ │ ├── pch.cpp │ │ └── pch.h │ ├── README.md │ ├── SimpleMediaSource.sln │ └── SimpleMediaSourceDriver │ │ ├── Device.c │ │ ├── Device.h │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── Public.h │ │ ├── Queue.c │ │ ├── Queue.h │ │ ├── ReadMe.txt │ │ ├── SimpleMediaSourceDriver.inf │ │ ├── SimpleMediaSourceDriver.vcxproj │ │ ├── SimpleMediaSourceDriver.vcxproj.filters │ │ └── Trace.h ├── SystemDma │ └── wdm │ │ ├── README.md │ │ ├── SystemDma.sln │ │ ├── exe │ │ ├── SystemDmaApp.vcxproj │ │ ├── SystemDmaApp.vcxproj.Filters │ │ ├── install.c │ │ └── testapp.c │ │ └── sys │ │ ├── SDma.vcxproj │ │ ├── SDma.vcxproj.Filters │ │ ├── sdma.c │ │ ├── sdma.h │ │ └── sdma.rc ├── cancel │ ├── README.md │ ├── cancel.sln │ ├── exe │ │ ├── canclapp.vcxproj │ │ ├── canclapp.vcxproj.Filters │ │ ├── install.c │ │ ├── testapp.c │ │ └── testapp.h │ ├── startio │ │ ├── cancel.c │ │ ├── cancel.h │ │ ├── cancel.rc │ │ ├── cancel.vcxproj │ │ └── cancel.vcxproj.Filters │ └── sys │ │ ├── cancel.c │ │ ├── cancel.h │ │ ├── cancel.rc │ │ ├── cancel.vcxproj │ │ └── cancel.vcxproj.Filters ├── echo │ ├── kmdf │ │ ├── README.md │ │ ├── driver │ │ │ ├── AutoSync │ │ │ │ ├── device.c │ │ │ │ ├── device.h │ │ │ │ ├── driver.c │ │ │ │ ├── driver.h │ │ │ │ ├── echo.inx │ │ │ │ ├── echo.vcxproj │ │ │ │ ├── echo.vcxproj.Filters │ │ │ │ ├── queue.c │ │ │ │ └── queue.h │ │ │ └── DriverSync │ │ │ │ ├── device.c │ │ │ │ ├── device.h │ │ │ │ ├── driver.c │ │ │ │ ├── driver.h │ │ │ │ ├── echo_2.inx │ │ │ │ ├── echo_2.vcxproj │ │ │ │ ├── echo_2.vcxproj.Filters │ │ │ │ ├── queue.c │ │ │ │ └── queue.h │ │ ├── exe │ │ │ ├── echoapp.cpp │ │ │ ├── echoapp.vcxproj │ │ │ ├── echoapp.vcxproj.Filters │ │ │ └── public.h │ │ └── kmdfecho.sln │ └── umdf2 │ │ ├── README.md │ │ ├── driver │ │ └── AutoSync │ │ │ ├── device.c │ │ │ ├── device.h │ │ │ ├── driver.c │ │ │ ├── driver.h │ │ │ ├── echo.vcxproj │ │ │ ├── echo.vcxproj.Filters │ │ │ ├── echoum.inx │ │ │ ├── queue.c │ │ │ └── queue.h │ │ ├── exe │ │ ├── echoapp.cpp │ │ ├── echoapp.vcxproj │ │ ├── echoapp.vcxproj.Filters │ │ └── public.h │ │ └── umdf2echo.sln ├── event │ ├── README.md │ ├── eventsample.sln │ ├── exe │ │ ├── event.vcxproj │ │ ├── event.vcxproj.Filters │ │ ├── eventtest.c │ │ └── install.c │ └── wdm │ │ ├── event.c │ │ ├── event.h │ │ ├── event.rc │ │ ├── event.vcxproj │ │ ├── event.vcxproj.Filters │ │ └── public.h ├── ioctl │ ├── kmdf │ │ ├── README.md │ │ ├── exe │ │ │ ├── install.c │ │ │ ├── nonpnpapp.vcxproj │ │ │ ├── nonpnpapp.vcxproj.Filters │ │ │ └── testapp.c │ │ ├── ioctl.sln │ │ └── sys │ │ │ ├── localwpp.ini │ │ │ ├── nonpnp.c │ │ │ ├── nonpnp.h │ │ │ ├── nonpnp.rc │ │ │ ├── nonpnp.vcxproj │ │ │ ├── nonpnp.vcxproj.Filters │ │ │ ├── public.h │ │ │ └── trace.h │ └── wdm │ │ ├── README.md │ │ ├── exe │ │ ├── install.c │ │ ├── ioctlapp.vcxproj │ │ ├── ioctlapp.vcxproj.Filters │ │ └── testapp.c │ │ ├── ioctl.sln │ │ └── sys │ │ ├── sioctl.c │ │ ├── sioctl.h │ │ ├── sioctl.rc │ │ ├── sioctl.vcxproj │ │ └── sioctl.vcxproj.Filters ├── obcallback │ ├── README.md │ ├── control │ │ ├── ObCallbackTestCtrl.vcxproj │ │ ├── ObCallbackTestCtrl.vcxproj.Filters │ │ ├── common.h │ │ ├── main.cpp │ │ ├── pch.h │ │ ├── pchsrc.cpp │ │ ├── readme.txt │ │ └── utils.cpp │ ├── driver │ │ ├── ObCallbackTest.vcxproj │ │ ├── ObCallbackTest.vcxproj.Filters │ │ ├── callback.c │ │ ├── pch.h │ │ ├── pchsrc.c │ │ ├── shared.h │ │ ├── tdriver.c │ │ ├── tdriver.h │ │ └── util.c │ └── obcallback.sln ├── pcidrv │ ├── README.md │ ├── kmdf │ │ ├── HW │ │ │ ├── PCIDRV.vcxproj │ │ │ ├── PCIDRV.vcxproj.Filters │ │ │ ├── e100_557.h │ │ │ ├── e100_equ.h │ │ │ ├── eeprom.c │ │ │ ├── isrdpc.c │ │ │ ├── localwpp.ini │ │ │ ├── macros.h │ │ │ ├── nic_def.h │ │ │ ├── nic_init.c │ │ │ ├── nic_pm.c │ │ │ ├── nic_recv.c │ │ │ ├── nic_req.c │ │ │ ├── nic_send.c │ │ │ ├── nuiouser.h │ │ │ ├── physet.c │ │ │ ├── precomp.h │ │ │ ├── precompsrc.c │ │ │ └── routines.c │ │ ├── PCIDRV.C │ │ ├── PCIDRV.H │ │ ├── PCIDRV.RC │ │ ├── PCIDRV.mof │ │ ├── genpci.inx │ │ ├── public.h │ │ ├── trace.h │ │ └── wmi.c │ ├── pcidrv.sln │ └── test │ │ ├── myping.c │ │ ├── myping.vcxproj │ │ ├── myping.vcxproj.Filters │ │ ├── resource.h │ │ ├── testapp.c │ │ ├── testapp.h │ │ └── testapp.rc ├── perfcounters │ └── kcs │ │ ├── README.md │ │ ├── kcs.c │ │ ├── kcs.h │ │ ├── kcs.man │ │ ├── kcs.rc │ │ ├── kcs.sln │ │ ├── kcs.vcxproj │ │ └── kcs.vcxproj.Filters ├── registry │ └── regfltr │ │ ├── README.md │ │ ├── exe │ │ ├── capture.c │ │ ├── common.h │ │ ├── post.c │ │ ├── pre.c │ │ ├── regctrl.c │ │ ├── regctrl.h │ │ ├── regctrl.rc │ │ ├── regctrl.vcxproj │ │ ├── regctrl.vcxproj.Filters │ │ └── util.c │ │ ├── regfltr.sln │ │ └── sys │ │ ├── capture.c │ │ ├── context.c │ │ ├── driver.c │ │ ├── multialt.c │ │ ├── post.c │ │ ├── pre.c │ │ ├── regfltr.c │ │ ├── regfltr.h │ │ ├── regfltr.rc │ │ ├── regfltr.vcxproj │ │ ├── regfltr.vcxproj.Filters │ │ ├── txr.c │ │ ├── txrutil.c │ │ ├── util.c │ │ └── version.c ├── toaster │ ├── toastDrv │ │ ├── Package │ │ │ ├── package.VcxProj │ │ │ └── package.VcxProj.Filters │ │ ├── README.md │ │ ├── exe │ │ │ ├── enum │ │ │ │ ├── Enum.vcxproj │ │ │ │ ├── Enum.vcxproj.Filters │ │ │ │ └── enum.c │ │ │ ├── notify │ │ │ │ ├── notify.c │ │ │ │ ├── notify.h │ │ │ │ ├── notify.rc │ │ │ │ ├── notify.vcxproj │ │ │ │ ├── notify.vcxproj.Filters │ │ │ │ └── toaster.ico │ │ │ ├── toast │ │ │ │ ├── toast.c │ │ │ │ ├── toast.vcxproj │ │ │ │ └── toast.vcxproj.Filters │ │ │ └── wmi │ │ │ │ ├── WmiToast.vcxproj │ │ │ │ ├── WmiToast.vcxproj.Filters │ │ │ │ ├── wmiexecute.cpp │ │ │ │ ├── wmigetset.cpp │ │ │ │ ├── wmitoast.cpp │ │ │ │ └── wmitoast.h │ │ ├── inc │ │ │ ├── driver.h │ │ │ └── public.h │ │ ├── kmdf │ │ │ ├── bus │ │ │ │ ├── dynamic │ │ │ │ │ ├── busenum.c │ │ │ │ │ ├── busenum.h │ │ │ │ │ ├── busenum.mof │ │ │ │ │ ├── busenum.rc │ │ │ │ │ ├── buspdo.c │ │ │ │ │ ├── dynambus.inx │ │ │ │ │ ├── dynambus.vcxproj │ │ │ │ │ ├── dynambus.vcxproj.Filters │ │ │ │ │ └── wmi.c │ │ │ │ └── static │ │ │ │ │ ├── StatBus.vcxproj │ │ │ │ │ ├── StatBus.vcxproj.Filters │ │ │ │ │ ├── busenum.c │ │ │ │ │ ├── busenum.h │ │ │ │ │ ├── busenum.mof │ │ │ │ │ ├── busenum.rc │ │ │ │ │ ├── buspdo.c │ │ │ │ │ ├── statbus.inx │ │ │ │ │ └── wmi.c │ │ │ ├── filter │ │ │ │ ├── filter.inx │ │ │ │ ├── generic │ │ │ │ │ ├── filter.c │ │ │ │ │ ├── filter.h │ │ │ │ │ ├── filter.rc │ │ │ │ │ ├── filter.vcxproj │ │ │ │ │ └── filter.vcxproj.Filters │ │ │ │ └── sideband │ │ │ │ │ ├── filter.c │ │ │ │ │ ├── filter.h │ │ │ │ │ ├── filter.rc │ │ │ │ │ ├── filter.vcxproj │ │ │ │ │ └── filter.vcxproj.Filters │ │ │ ├── func │ │ │ │ ├── featured │ │ │ │ │ ├── power.c │ │ │ │ │ ├── toaster.c │ │ │ │ │ ├── toaster.mof │ │ │ │ │ ├── toaster.rc │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── wdffeatured.inx │ │ │ │ │ ├── wdffeatured.vcxproj │ │ │ │ │ ├── wdffeatured.vcxproj.Filters │ │ │ │ │ └── wmi.c │ │ │ │ ├── shared │ │ │ │ │ └── toaster.h │ │ │ │ └── simple │ │ │ │ │ ├── toaster.c │ │ │ │ │ ├── wdfsimple.inx │ │ │ │ │ ├── wdfsimple.vcxproj │ │ │ │ │ └── wdfsimple.vcxproj.Filters │ │ │ └── toastmon │ │ │ │ ├── toastmon.H │ │ │ │ ├── toastmon.RC │ │ │ │ ├── toastmon.c │ │ │ │ ├── wdftoastmon.inx │ │ │ │ ├── wdftoastmon.vcxproj │ │ │ │ ├── wdftoastmon.vcxproj.Filters │ │ │ │ └── wmi.c │ │ └── toaster.sln │ ├── toastpkg │ │ ├── README.md │ │ ├── inf │ │ │ ├── autorun.inf │ │ │ └── toastpkg.inf │ │ ├── toastapp │ │ │ ├── precomp.h │ │ │ ├── precompsrc.c │ │ │ ├── rc_ids.h │ │ │ ├── toastapp.c │ │ │ ├── toastapp.dlg │ │ │ ├── toastapp.h │ │ │ ├── toastapp.ico │ │ │ ├── toastapp.rc │ │ │ ├── toastapp.vcxproj │ │ │ └── toastapp.vcxproj.Filters │ │ ├── toastco │ │ │ ├── precomp.h │ │ │ ├── precompsrc.c │ │ │ ├── toastco.c │ │ │ ├── toastco.h │ │ │ ├── toastco.rc │ │ │ ├── tostrco2.def │ │ │ ├── tostrco2.vcxproj │ │ │ └── tostrco2.vcxproj.Filters │ │ ├── toastpkg.sln │ │ └── toastva │ │ │ ├── header.bmp │ │ │ ├── precomp.h │ │ │ ├── precompsrc.c │ │ │ ├── resource.h │ │ │ ├── search.avi │ │ │ ├── toastapp.ico │ │ │ ├── toastva.c │ │ │ ├── toastva.h │ │ │ ├── toastva.rc │ │ │ ├── toastva.vcxproj │ │ │ ├── toastva.vcxproj.Filters │ │ │ ├── util.c │ │ │ ├── watermrk.bmp │ │ │ └── wizard.c │ └── umdf2 │ │ ├── Package │ │ ├── package.VcxProj │ │ └── package.VcxProj.Filters │ │ ├── README.md │ │ ├── exe │ │ ├── enum │ │ │ ├── Enum.vcxproj │ │ │ ├── Enum.vcxproj.Filters │ │ │ └── enum.c │ │ ├── notify │ │ │ ├── notify.c │ │ │ ├── notify.h │ │ │ ├── notify.rc │ │ │ ├── notify.vcxproj │ │ │ ├── notify.vcxproj.Filters │ │ │ └── toaster.ico │ │ └── toast │ │ │ ├── toast.c │ │ │ ├── toast.vcxproj │ │ │ └── toast.vcxproj.Filters │ │ ├── filter │ │ └── generic │ │ │ ├── filter.c │ │ │ ├── filter.h │ │ │ ├── filter.rc │ │ │ ├── filterum.inx │ │ │ ├── filterum.vcxproj │ │ │ └── filterum.vcxproj.Filters │ │ ├── func │ │ ├── featured │ │ │ ├── power.c │ │ │ ├── toaster.c │ │ │ ├── toaster.rc │ │ │ ├── wdffeaturedum.inx │ │ │ ├── wdffeaturedum.vcxproj │ │ │ └── wdffeaturedum.vcxproj.Filters │ │ ├── shared │ │ │ └── toaster.h │ │ └── simple │ │ │ ├── toaster.c │ │ │ ├── wdfsimpleum.inx │ │ │ ├── wdfsimpleum.vcxproj │ │ │ └── wdfsimpleum.vcxproj.Filters │ │ ├── inc │ │ ├── driver.h │ │ └── public.h │ │ └── umdf2toaster.sln └── tracing │ ├── SystemTraceControl │ ├── README.md │ ├── SystemTraceControl.cpp │ ├── SystemTraceControl.sln │ ├── SystemTraceControl.vcxproj │ └── SystemTraceControl.vcxproj.Filters │ ├── evntdrv │ ├── Eventdrv │ │ ├── Eventdrv.vcxproj │ │ ├── Eventdrv.vcxproj.Filters │ │ ├── drvioctl.h │ │ ├── evntdrv.c │ │ ├── evntdrv.xml │ │ └── evntdrvevents.rc │ ├── README.md │ ├── eventdrv.sln │ └── evntctrl │ │ ├── evntctrl.vcxproj │ │ ├── evntctrl.vcxproj.Filters │ │ ├── install.c │ │ ├── install.h │ │ └── tracectl.c │ └── tracedriver │ ├── README.md │ ├── tracectl │ ├── install.c │ ├── install.h │ ├── tracectl.c │ ├── tracectl.vcxproj │ └── tracectl.vcxproj.Filters │ ├── tracedrv.sln │ └── tracedrv │ ├── drvioctl.h │ ├── tracedrv.c │ ├── tracedrv.ctl │ ├── tracedrv.h │ ├── tracedrv.rc │ ├── tracedrv.vcxproj │ └── tracedrv.vcxproj.Filters ├── gnss ├── GnssUmdfSampleDriver.wprp ├── ReadMe.md ├── gnssUmdf.sln └── gnssUmdf │ ├── Defaults.h │ ├── Device.cpp │ ├── Device.h │ ├── Driver.cpp │ ├── Driver.h │ ├── FixHandler.cpp │ ├── FixHandler.h │ ├── FixSession.cpp │ ├── FixSession.h │ ├── Queue.cpp │ ├── Queue.h │ ├── Trace.h │ ├── gnssUmdf.inf │ ├── gnssUmdf.vcxproj │ ├── gnssUmdf.vcxproj.filters │ └── precomp.h ├── gpio └── samples │ ├── README.md │ ├── sim.sln │ ├── simdevice │ ├── common.h │ ├── kmdf │ │ ├── GpioSampleKMDF.asl │ │ ├── simdevice.inx │ │ ├── simdevice.rc │ │ ├── simdevice.vcxproj │ │ └── simdevice.vcxproj.Filters │ ├── simdevice.c │ └── umdf │ │ ├── GpioSampleUMDF.asl │ │ ├── simdeviceumdf.inx │ │ ├── simdeviceumdf.rc │ │ ├── simdeviceumdf.vcxproj │ │ └── simdeviceumdf.vcxproj.Filters │ ├── simgpio │ ├── simgpio.c │ ├── simgpio.inx │ ├── simgpio.rc │ ├── simgpio.vcxproj │ └── simgpio.vcxproj.Filters │ └── simgpio_i2c │ ├── simgpio_i2c.c │ ├── simgpio_i2c.h │ ├── simgpio_i2c.inx │ ├── simgpio_i2c.rc │ ├── simgpio_i2c.vcxproj │ ├── simgpio_i2c.vcxproj.Filters │ ├── spb_i2c.c │ └── trace.h ├── hid ├── firefly │ ├── README.md │ ├── app │ │ ├── firefly.cpp │ │ ├── flicker.vcxproj │ │ └── flicker.vcxproj.Filters │ ├── driver │ │ ├── device.c │ │ ├── device.h │ │ ├── driver.c │ │ ├── firefly.h │ │ ├── firefly.inx │ │ ├── firefly.mof │ │ ├── firefly.rc │ │ ├── firefly.vcxproj │ │ ├── firefly.vcxproj.Filters │ │ ├── magic.h │ │ ├── vfeature.c │ │ ├── vfeature.h │ │ ├── wmi.c │ │ └── wmi.h │ ├── firefly.sln │ ├── lib │ │ ├── Luminous.vcxproj │ │ ├── Luminous.vcxproj.Filters │ │ └── luminous.cpp │ ├── sauron │ │ ├── SAURON.vcxproj │ │ ├── SAURON.vcxproj.Filters │ │ ├── Sauron.cpp │ │ ├── Sauron.h │ │ ├── Sauron.rgs │ │ ├── Saurondll.cpp │ │ ├── Saurondll.def │ │ ├── Saurondll.rc │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── effects.h │ │ ├── effects.idl │ │ ├── iSauron.idl │ │ ├── resource.h │ │ └── stdafxsrc.cpp │ └── shared │ │ ├── luminous.h │ │ └── project.mk ├── hclient │ ├── README.md │ ├── buffers.c │ ├── buffers.h │ ├── ecdisp.c │ ├── ecdisp.h │ ├── hclient.c │ ├── hclient.h │ ├── hclient.mk │ ├── hclient.rc │ ├── hclient.sln │ ├── hclient.vcxproj │ ├── hclient.vcxproj.Filters │ ├── hid.h │ ├── list.h │ ├── pnp.c │ ├── report.c │ ├── resource.h │ ├── strings.c │ └── strings.h ├── hidusbfx2 │ ├── Package │ │ ├── package.VcxProj │ │ └── package.VcxProj.Filters │ ├── README.md │ ├── hidkmdf │ │ ├── hidkmdf.c │ │ ├── hidkmdf.rc │ │ ├── hidkmdf.vcxproj │ │ └── hidkmdf.vcxproj.Filters │ ├── hidusbfx2.sln │ └── sys │ │ ├── driver.c │ │ ├── hid.c │ │ ├── hidusbfx2.h │ │ ├── hidusbfx2.inx │ │ ├── hidusbfx2.rc │ │ ├── hidusbfx2.vcxproj │ │ ├── hidusbfx2.vcxproj.Filters │ │ ├── trace.h │ │ └── usb.c └── vhidmini2 │ ├── README.md │ ├── app │ ├── testvhid.c │ ├── testvhid.rc │ ├── testvhid.vcxproj │ └── testvhid.vcxproj.Filters │ ├── driver │ ├── kmdf │ │ ├── util.c │ │ ├── vhidmini.inx │ │ ├── vhidmini.rc │ │ ├── vhidmini.vcxproj │ │ └── vhidmini.vcxproj.Filters │ ├── umdf2 │ │ ├── VhidminiUm.inx │ │ ├── VhidminiUm.vcxproj │ │ ├── VhidminiUm.vcxproj.Filters │ │ ├── util.c │ │ └── vhidmini.rc │ ├── vhidmini.c │ └── vhidmini.h │ ├── inc │ └── common.h │ └── vhidmini2.sln ├── input ├── kbfiltr │ ├── README.md │ ├── exe │ │ ├── kbftest.c │ │ ├── kbftest.vcxproj │ │ └── kbftest.vcxproj.Filters │ ├── kbfiltr.sln │ └── sys │ │ ├── kbfiltr.c │ │ ├── kbfiltr.h │ │ ├── kbfiltr.inx │ │ ├── kbfiltr.rc │ │ ├── kbfiltr.vcxproj │ │ ├── kbfiltr.vcxproj.Filters │ │ ├── public.h │ │ └── rawpdo.c ├── layout │ ├── README.md │ ├── all_kbds │ │ ├── kbdfr │ │ │ ├── kbdfr.c │ │ │ ├── kbdfr.def │ │ │ ├── kbdfr.h │ │ │ ├── kbdfr.rc │ │ │ ├── kbdfr.vcxproj │ │ │ └── kbdfr.vcxproj.Filters │ │ └── kbdgr │ │ │ ├── kbdgr.c │ │ │ ├── kbdgr.def │ │ │ ├── kbdgr.h │ │ │ ├── kbdgr.rc │ │ │ ├── kbdgr.vcxproj │ │ │ └── kbdgr.vcxproj.Filters │ ├── fe_kbds │ │ ├── fekbds.inc │ │ └── jpn │ │ │ ├── 101 │ │ │ ├── kbd101.c │ │ │ ├── kbd101.def │ │ │ ├── kbd101.h │ │ │ ├── kbd101.rc │ │ │ ├── kbd101.vcxproj │ │ │ └── kbd101.vcxproj.Filters │ │ │ ├── 106 │ │ │ ├── kbd106.c │ │ │ ├── kbd106.def │ │ │ ├── kbd106.h │ │ │ ├── kbd106.rc │ │ │ ├── kbd106.vcxproj │ │ │ └── kbd106.vcxproj.Filters │ │ │ ├── inc │ │ │ └── kbdjpn.h │ │ │ └── japan.inc │ ├── kbd.sln │ └── kbdus │ │ ├── kbdus.c │ │ ├── kbdus.def │ │ ├── kbdus.h │ │ ├── kbdus.rc │ │ ├── kbdus.vcxproj │ │ └── kbdus.vcxproj.Filters └── moufiltr │ ├── Moufiltr.htm │ ├── README.md │ ├── moufiltr.c │ ├── moufiltr.h │ ├── moufiltr.inx │ ├── moufiltr.rc │ ├── moufiltr.sln │ ├── moufiltr.vcxproj │ └── moufiltr.vcxproj.Filters ├── network ├── config │ └── bindview │ │ ├── BINDING.CPP │ │ ├── BINDVIEW.CPP │ │ ├── BINDVIEW.H │ │ ├── BINDVIEW.ICO │ │ ├── BindView.rc │ │ ├── Component.cpp │ │ ├── NetCfgAPI.cpp │ │ ├── NetCfgAPI.h │ │ ├── README.md │ │ ├── RESOURCE.H │ │ ├── bindview.sln │ │ ├── bindview.vcxproj │ │ └── bindview.vcxproj.Filters ├── modem │ └── fakemodem │ │ ├── README.md │ │ ├── driver.c │ │ ├── fakemodem.h │ │ ├── fakemodem.sln │ │ ├── fakemodem.vcxproj │ │ ├── fakemodem.vcxproj.Filters │ │ ├── ioctl.c │ │ ├── mdmfake.inx │ │ └── readwrit.c ├── ndis │ ├── extension │ │ ├── README.md │ │ ├── base │ │ │ ├── SxApi.h │ │ │ ├── SxBase.c │ │ │ ├── SxBase.h │ │ │ ├── SxLibrary.c │ │ │ ├── SxLibrary.h │ │ │ ├── precomp.h │ │ │ ├── precompsrc.c │ │ │ ├── sxbase.vcxproj │ │ │ └── sxbase.vcxproj.Filters │ │ ├── extensions.sln │ │ └── samples │ │ │ ├── forward │ │ │ ├── MSForwardExtPolicy.mof │ │ │ ├── MSForwardExtPolicyStatus.mof │ │ │ ├── MsForwardExt.c │ │ │ ├── MsForwardExt.h │ │ │ ├── MsForwardExt.rc │ │ │ ├── install.cmd │ │ │ ├── msforwardext.inf │ │ │ ├── msforwardext.vcxproj │ │ │ ├── msforwardext.vcxproj.Filters │ │ │ ├── precomp.h │ │ │ ├── precompsrc.c │ │ │ ├── removeRoute.ps1 │ │ │ ├── setRoute.ps1 │ │ │ └── uninstall.cmd │ │ │ └── passthrough │ │ │ ├── MsPassthroughExt.c │ │ │ ├── MsPassthroughExt.rc │ │ │ ├── install.cmd │ │ │ ├── mspassthroughext.inf │ │ │ ├── mspassthroughext.vcxproj │ │ │ ├── mspassthroughext.vcxproj.Filters │ │ │ ├── precomp.h │ │ │ ├── precompsrc.c │ │ │ └── uninstall.cmd │ ├── filter │ │ ├── README.md │ │ ├── device.c │ │ ├── filter.c │ │ ├── filter.h │ │ ├── filter.rc │ │ ├── filter.sln │ │ ├── filteruser.h │ │ ├── flt_dbg.c │ │ ├── flt_dbg.h │ │ ├── ndislwf.vcxproj │ │ ├── ndislwf.vcxproj.Filters │ │ ├── netlwf.inf │ │ ├── precomp.h │ │ └── precompsrc.c │ ├── mux │ │ ├── README.md │ │ ├── driver │ │ │ └── 60 │ │ │ │ ├── miniport.c │ │ │ │ ├── mux.c │ │ │ │ ├── mux.h │ │ │ │ ├── mux.rc │ │ │ │ ├── mux_mp.inf │ │ │ │ ├── muxp.inf │ │ │ │ ├── novlan │ │ │ │ ├── mux.vcxproj │ │ │ │ ├── mux.vcxproj.Filters │ │ │ │ └── precompsrc.c │ │ │ │ ├── precomp.h │ │ │ │ ├── protocol.c │ │ │ │ ├── public.h │ │ │ │ └── vlan │ │ │ │ ├── muxvlan.vcxproj │ │ │ │ ├── muxvlan.vcxproj.Filters │ │ │ │ └── precompsrc.c │ │ ├── mux.sln │ │ └── notifyob │ │ │ ├── adapter.cpp │ │ │ ├── adapter.h │ │ │ ├── common.cpp │ │ │ ├── common.h │ │ │ ├── dllmain.cpp │ │ │ ├── implinc.cpp │ │ │ ├── list.h │ │ │ ├── mux.def │ │ │ ├── mux.vcxproj │ │ │ ├── mux.vcxproj.Filters │ │ │ ├── notify.RC │ │ │ ├── notify.RGS │ │ │ ├── notify.cpp │ │ │ ├── notify.h │ │ │ ├── notifyn.idl │ │ │ ├── public.h │ │ │ ├── resource.h │ │ │ ├── virtual.cpp │ │ │ └── virtual.h │ ├── ndisprot │ │ └── 6x │ │ │ ├── README.md │ │ │ ├── ndisprot60.sln │ │ │ ├── sys │ │ │ ├── 60 │ │ │ │ ├── ndisprot60.inf │ │ │ │ ├── ndisprot60.rc │ │ │ │ ├── ndisprot60.vcxproj │ │ │ │ ├── ndisprot60.vcxproj.Filters │ │ │ │ └── precompsrc.c │ │ │ ├── 630 │ │ │ │ ├── ndisprot630.inf │ │ │ │ ├── ndisprot630.rc │ │ │ │ ├── ndisprot630.vcxproj │ │ │ │ ├── ndisprot630.vcxproj.Filters │ │ │ │ └── precompsrc.c │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── excallbk.c │ │ │ ├── macros.h │ │ │ ├── ndisbind.c │ │ │ ├── ndisprot.h │ │ │ ├── ntdisp.c │ │ │ ├── precomp.h │ │ │ ├── protuser.h │ │ │ ├── recv.c │ │ │ └── send.c │ │ │ └── test │ │ │ ├── prottest.c │ │ │ ├── prottest.vcxproj │ │ │ └── prottest.vcxproj.Filters │ ├── ndisprot_kmdf │ │ ├── 60 │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── excallbk.c │ │ │ ├── macros.h │ │ │ ├── ndisbind.c │ │ │ ├── ndisprot.h │ │ │ ├── ndisprot.inx │ │ │ ├── ndisprot.rc │ │ │ ├── nprt6wdf.vcxproj │ │ │ ├── nprt6wdf.vcxproj.Filters │ │ │ ├── ntdisp.c │ │ │ ├── precomp.h │ │ │ ├── precompsrc.c │ │ │ ├── protuser.h │ │ │ ├── recv.c │ │ │ └── send.c │ │ ├── Package │ │ │ ├── package.VcxProj │ │ │ └── package.VcxProj.Filters │ │ ├── README.md │ │ ├── ndisprot_kmdf.sln │ │ └── notifyob │ │ │ ├── Common.hpp │ │ │ ├── ProtNotify.cpp │ │ │ ├── ProtNotify.def │ │ │ ├── ProtNotify.idl │ │ │ ├── ProtNotify.rc │ │ │ ├── ProtNotify.rgs │ │ │ ├── ProtNotify.vcxproj │ │ │ ├── ProtNotify.vcxproj.Filters │ │ │ ├── commonsrc.cpp │ │ │ ├── dllmain.cpp │ │ │ └── resource.h │ └── netvmini │ │ └── 6x │ │ ├── 60 │ │ ├── netvmini60.inf │ │ ├── netvmini60.rc │ │ ├── netvmini60.vcxproj │ │ └── netvmini60.vcxproj.Filters │ │ ├── 620 │ │ ├── netvmini620.inf │ │ ├── netvmini620.rc │ │ ├── netvmini620.vcxproj │ │ └── netvmini620.vcxproj.Filters │ │ ├── 630 │ │ ├── netvmini630.inf │ │ ├── netvmini630.rc │ │ ├── netvmini630.vcxproj │ │ └── netvmini630.vcxproj.Filters │ │ ├── 680 │ │ ├── netvmini680.inf │ │ ├── netvmini680.rc │ │ ├── netvmini680.vcxproj │ │ └── netvmini680.vcxproj.Filters │ │ ├── README.md │ │ ├── adapter.c │ │ ├── adapter.h │ │ ├── ctrlpath.c │ │ ├── ctrlpath.h │ │ ├── datapath.c │ │ ├── datapath.h │ │ ├── hardware.h │ │ ├── miniport.c │ │ ├── miniport.h │ │ ├── mphal.c │ │ ├── mphal.h │ │ ├── netvmin6.h │ │ ├── netvmini.sln │ │ ├── qos.c │ │ ├── qos.h │ │ ├── rssv2.c │ │ ├── rssv2.h │ │ ├── rssv2lib.c │ │ ├── rssv2lib.h │ │ ├── tcbrcb.c │ │ ├── tcbrcb.h │ │ ├── trace.h │ │ ├── vmq.c │ │ └── vmq.h ├── radio │ └── RadioManagerSample │ │ ├── README.md │ │ ├── RadioManagerSample.sln │ │ ├── SampleRM.reg │ │ ├── cpp │ │ ├── InternalInterfaces.h │ │ ├── RadioMgr.idl │ │ ├── RadioMgr_interface.cpp │ │ ├── SampleInstanceCollection.cpp │ │ ├── SampleInstanceCollection.h │ │ ├── SampleRM.def │ │ ├── SampleRM.rc │ │ ├── SampleRM.vcxproj │ │ ├── SampleRM.vcxproj.Filters │ │ ├── SampleRadioInstance.cpp │ │ ├── SampleRadioInstance.h │ │ ├── SampleRadioManager.cpp │ │ ├── SampleRadioManager.h │ │ ├── dllmain.cpp │ │ ├── precomp.h │ │ ├── precompsrc.cpp │ │ └── sampleRM.idl │ │ └── install.cmd ├── trans │ ├── WFPSampler │ │ ├── HCK │ │ │ ├── WFPLogo_WFPSampler.Answer │ │ │ └── WFPLogo_WFPSampler.Info │ │ ├── README.md │ │ ├── WFPSampler.sln │ │ ├── docs │ │ │ ├── ADVANCED_PACKET_INJECTION.mht │ │ │ ├── BASIC_ACTION.mht │ │ │ ├── BASIC_PACKET_EXAMINATION.mht │ │ │ ├── BASIC_PACKET_INJECTION.mht │ │ │ ├── BASIC_PACKET_MODIFICATION.mht │ │ │ ├── BASIC_STREAM_INJECTION.mht │ │ │ ├── ConditionsForCommandLine.mht │ │ │ ├── FAST_PACKET_INJECTION.mht │ │ │ ├── FAST_STREAM_INJECTION.mht │ │ │ ├── FLOW_ASSOCIATION.mht │ │ │ ├── MatchTypesForCommandLine.mht │ │ │ ├── PEND_AUTHORIZATION.mht │ │ │ ├── PEND_ENDPOINT_CLOSURE.mht │ │ │ ├── PROXY.mht │ │ │ └── _WFPSampler_Overview.mht │ │ ├── exe │ │ │ ├── Framework_RPCClientInterface.cpp │ │ │ ├── Framework_RPCClientInterface.h │ │ │ ├── Framework_WFPSampler.cpp │ │ │ ├── Framework_WFPSampler.h │ │ │ ├── Framework_WFPSampler.rc │ │ │ ├── HelperFunctions_CommandLine.cpp │ │ │ ├── HelperFunctions_CommandLine.h │ │ │ ├── Scenarios_AdvancedPacketInjection.cpp │ │ │ ├── Scenarios_AdvancedPacketInjection.h │ │ │ ├── Scenarios_AppContainers.cpp │ │ │ ├── Scenarios_AppContainers.h │ │ │ ├── Scenarios_BasicAction.cpp │ │ │ ├── Scenarios_BasicAction.h │ │ │ ├── Scenarios_BasicPacketExamination.cpp │ │ │ ├── Scenarios_BasicPacketExamination.h │ │ │ ├── Scenarios_BasicPacketInjection.cpp │ │ │ ├── Scenarios_BasicPacketInjection.h │ │ │ ├── Scenarios_BasicPacketModification.cpp │ │ │ ├── Scenarios_BasicPacketModification.h │ │ │ ├── Scenarios_BasicStreamInjection.cpp │ │ │ ├── Scenarios_BasicStreamInjection.h │ │ │ ├── Scenarios_FastPacketInjection.cpp │ │ │ ├── Scenarios_FastPacketInjection.h │ │ │ ├── Scenarios_FastStreamInjection.cpp │ │ │ ├── Scenarios_FastStreamInjection.h │ │ │ ├── Scenarios_FlowAssociation.cpp │ │ │ ├── Scenarios_FlowAssociation.h │ │ │ ├── Scenarios_Include.h │ │ │ ├── Scenarios_PendAuthorization.cpp │ │ │ ├── Scenarios_PendAuthorization.h │ │ │ ├── Scenarios_PendEndpointClosure.cpp │ │ │ ├── Scenarios_PendEndpointClosure.h │ │ │ ├── Scenarios_Proxy.cpp │ │ │ ├── Scenarios_Proxy.h │ │ │ ├── WFPSampler.vcxproj │ │ │ └── WFPSampler.vcxproj.Filters │ │ ├── idl │ │ │ ├── WFPSamplerRPC.ACF │ │ │ └── WFPSamplerRPC.IDL │ │ ├── inc │ │ │ ├── Identifiers.h │ │ │ ├── ProviderContexts.h │ │ │ ├── ScenarioData.h │ │ │ └── WFPArrays.h │ │ ├── lib │ │ │ ├── HelperFunctions_FwpmCallout.cpp │ │ │ ├── HelperFunctions_FwpmCallout.h │ │ │ ├── HelperFunctions_FwpmEngine.cpp │ │ │ ├── HelperFunctions_FwpmEngine.h │ │ │ ├── HelperFunctions_FwpmFilter.cpp │ │ │ ├── HelperFunctions_FwpmFilter.h │ │ │ ├── HelperFunctions_FwpmLayer.cpp │ │ │ ├── HelperFunctions_FwpmLayer.h │ │ │ ├── HelperFunctions_FwpmProvider.cpp │ │ │ ├── HelperFunctions_FwpmProvider.h │ │ │ ├── HelperFunctions_FwpmProviderContext.cpp │ │ │ ├── HelperFunctions_FwpmProviderContext.h │ │ │ ├── HelperFunctions_FwpmSubLayer.cpp │ │ │ ├── HelperFunctions_FwpmSubLayer.h │ │ │ ├── HelperFunctions_FwpmTransaction.cpp │ │ │ ├── HelperFunctions_FwpmTransaction.h │ │ │ ├── HelperFunctions_GUID.cpp │ │ │ ├── HelperFunctions_GUID.h │ │ │ ├── HelperFunctions_IPAddress.cpp │ │ │ ├── HelperFunctions_IPAddress.h │ │ │ ├── HelperFunctions_Include.h │ │ │ ├── HelperFunctions_Log.cpp │ │ │ ├── HelperFunctions_Log.h │ │ │ ├── HelperFunctions_MACAddress.cpp │ │ │ ├── HelperFunctions_MACAddress.h │ │ │ ├── HelperFunctions_Macros.h │ │ │ ├── HelperFunctions_Process.cpp │ │ │ ├── HelperFunctions_Process.h │ │ │ ├── HelperFunctions_Registry.cpp │ │ │ ├── HelperFunctions_Registry.h │ │ │ ├── HelperFunctions_SID.cpp │ │ │ ├── HelperFunctions_SID.h │ │ │ ├── HelperFunctions_Service.cpp │ │ │ ├── HelperFunctions_Service.h │ │ │ ├── HelperFunctions_Strings.cpp │ │ │ ├── HelperFunctions_Strings.h │ │ │ ├── HelperFunctions_ThreadPools.cpp │ │ │ ├── HelperFunctions_ThreadPools.h │ │ │ ├── HelperFunctions_ThreadsAndEvents.cpp │ │ │ ├── HelperFunctions_ThreadsAndEvents.h │ │ │ ├── HelperFunctions_WinSock.cpp │ │ │ ├── HelperFunctions_WinSock.h │ │ │ ├── WFPSampler.vcxproj │ │ │ └── WFPSampler.vcxproj.Filters │ │ ├── scripts │ │ │ └── WFPSamplerInstall.cmd │ │ ├── svc │ │ │ ├── Framework_Include.h │ │ │ ├── Framework_RPCServerInterface.cpp │ │ │ ├── Framework_RPCServerInterface.h │ │ │ ├── Framework_WFPSamplerService.cpp │ │ │ ├── Framework_WFPSamplerService.h │ │ │ ├── Framework_WFPSamplerService.rc │ │ │ ├── Framework_WFPSamplerService_Msg.mc │ │ │ ├── Framework_WindowsFirewall.cpp │ │ │ ├── Framework_WindowsFirewall.h │ │ │ ├── Scenarios_AdvancedPacketInjection.cpp │ │ │ ├── Scenarios_AppContainers.cpp │ │ │ ├── Scenarios_BasicAction.cpp │ │ │ ├── Scenarios_BasicPacketExamination.cpp │ │ │ ├── Scenarios_BasicPacketInjection.cpp │ │ │ ├── Scenarios_BasicPacketModification.cpp │ │ │ ├── Scenarios_BasicStreamInjection.cpp │ │ │ ├── Scenarios_FastPacketInjection.cpp │ │ │ ├── Scenarios_FastStreamInjection.cpp │ │ │ ├── Scenarios_FlowAssociation.cpp │ │ │ ├── Scenarios_PendAuthorization.cpp │ │ │ ├── Scenarios_PendEndpointClosure.cpp │ │ │ ├── Scenarios_Proxy.cpp │ │ │ ├── WFPSamplerService.vcxproj │ │ │ └── WFPSamplerService.vcxproj.Filters │ │ ├── sys │ │ │ ├── ClassifyFunctions_AdvancedPacketInjectionCallouts.cpp │ │ │ ├── ClassifyFunctions_AdvancedPacketInjectionCallouts.h │ │ │ ├── ClassifyFunctions_BasicActionCallouts.cpp │ │ │ ├── ClassifyFunctions_BasicActionCallouts.h │ │ │ ├── ClassifyFunctions_BasicPacketExaminationCallouts.cpp │ │ │ ├── ClassifyFunctions_BasicPacketExaminationCallouts.h │ │ │ ├── ClassifyFunctions_BasicPacketInjectionCallouts.cpp │ │ │ ├── ClassifyFunctions_BasicPacketInjectionCallouts.h │ │ │ ├── ClassifyFunctions_BasicPacketModificationCallouts.cpp │ │ │ ├── ClassifyFunctions_BasicPacketModificationCallouts.h │ │ │ ├── ClassifyFunctions_BasicStreamInjectionCallouts.cpp │ │ │ ├── ClassifyFunctions_BasicStreamInjectionCallouts.h │ │ │ ├── ClassifyFunctions_FastPacketInjectionCallouts.cpp │ │ │ ├── ClassifyFunctions_FastPacketInjectionCallouts.h │ │ │ ├── ClassifyFunctions_FastStreamInjectionCallouts.cpp │ │ │ ├── ClassifyFunctions_FastStreamInjectionCallouts.h │ │ │ ├── ClassifyFunctions_FlowAssociationCallouts.cpp │ │ │ ├── ClassifyFunctions_FlowAssociationCallouts.h │ │ │ ├── ClassifyFunctions_Include.h │ │ │ ├── ClassifyFunctions_PendAuthorizationCallouts.cpp │ │ │ ├── ClassifyFunctions_PendAuthorizationCallouts.h │ │ │ ├── ClassifyFunctions_PendEndpointClosureCallouts.cpp │ │ │ ├── ClassifyFunctions_PendEndpointClosureCallouts.h │ │ │ ├── ClassifyFunctions_ProxyCallouts.cpp │ │ │ ├── ClassifyFunctions_ProxyCallouts.h │ │ │ ├── CompletionFunctions_AdvancedPacketInjectionCallouts.cpp │ │ │ ├── CompletionFunctions_AdvancedPacketInjectionCallouts.h │ │ │ ├── CompletionFunctions_BasicPacketInjectionCallouts.cpp │ │ │ ├── CompletionFunctions_BasicPacketInjectionCallouts.h │ │ │ ├── CompletionFunctions_BasicPacketModificationCallouts.cpp │ │ │ ├── CompletionFunctions_BasicPacketModificationCallouts.h │ │ │ ├── CompletionFunctions_BasicStreamInjectionCallouts.cpp │ │ │ ├── CompletionFunctions_BasicStreamInjectionCallouts.h │ │ │ ├── CompletionFunctions_FastPacketInjectionCallouts.cpp │ │ │ ├── CompletionFunctions_FastPacketInjectionCallouts.h │ │ │ ├── CompletionFunctions_FastStreamInjectionCallouts.cpp │ │ │ ├── CompletionFunctions_FastStreamInjectionCallouts.h │ │ │ ├── CompletionFunctions_Include.h │ │ │ ├── CompletionFunctions_PendAuthorizationCallouts.cpp │ │ │ ├── CompletionFunctions_PendAuthorizationCallouts.h │ │ │ ├── CompletionFunctions_ProxyCallouts.cpp │ │ │ ├── CompletionFunctions_ProxyCallouts.h │ │ │ ├── Framework_Events.cpp │ │ │ ├── Framework_Events.h │ │ │ ├── Framework_Include.h │ │ │ ├── Framework_PowerStates.cpp │ │ │ ├── Framework_PowerStates.h │ │ │ ├── Framework_WFPSamplerCalloutDriver.cpp │ │ │ ├── Framework_WFPSamplerCalloutDriver.h │ │ │ ├── Framework_WFPSamplerCalloutDriver.rc │ │ │ ├── HelperFunctions_ExposedCallouts.cpp │ │ │ ├── HelperFunctions_ExposedCallouts.h │ │ │ ├── NotifyFunctions_AdvancedCallouts.cpp │ │ │ ├── NotifyFunctions_AdvancedCallouts.h │ │ │ ├── NotifyFunctions_BasicCallouts.cpp │ │ │ ├── NotifyFunctions_BasicCallouts.h │ │ │ ├── NotifyFunctions_FastCallouts.cpp │ │ │ ├── NotifyFunctions_FastCallouts.h │ │ │ ├── NotifyFunctions_FlowDelete.cpp │ │ │ ├── NotifyFunctions_FlowDelete.h │ │ │ ├── NotifyFunctions_Include.h │ │ │ ├── NotifyFunctions_PendCallouts.cpp │ │ │ ├── NotifyFunctions_PendCallouts.h │ │ │ ├── NotifyFunctions_ProxyCallouts.cpp │ │ │ ├── NotifyFunctions_ProxyCallouts.h │ │ │ ├── SubscriptionFunctions_BFEState.cpp │ │ │ ├── SubscriptionFunctions_BFEState.h │ │ │ ├── SubscriptionFunctions_Include.h │ │ │ ├── WFPSamplerCalloutDriver.InX │ │ │ ├── WFPSamplerCalloutDriver.vcxproj │ │ │ ├── WFPSamplerCalloutDriver.vcxproj.Filters │ │ │ └── Wfp_Annotations.h │ │ └── syslib │ │ │ ├── HelperFunctions_ClassifyData.cpp │ │ │ ├── HelperFunctions_ClassifyData.h │ │ │ ├── HelperFunctions_DeferredProcedureCalls.cpp │ │ │ ├── HelperFunctions_DeferredProcedureCalls.h │ │ │ ├── HelperFunctions_FlowContext.cpp │ │ │ ├── HelperFunctions_FlowContext.h │ │ │ ├── HelperFunctions_FwpObjects.cpp │ │ │ ├── HelperFunctions_FwpObjects.h │ │ │ ├── HelperFunctions_Headers.cpp │ │ │ ├── HelperFunctions_Headers.h │ │ │ ├── HelperFunctions_ICMPMessages.h │ │ │ ├── HelperFunctions_Include.h │ │ │ ├── HelperFunctions_InjectionData.cpp │ │ │ ├── HelperFunctions_InjectionData.h │ │ │ ├── HelperFunctions_Macros.h │ │ │ ├── HelperFunctions_NDIS.cpp │ │ │ ├── HelperFunctions_NDIS.h │ │ │ ├── HelperFunctions_NetBuffer.cpp │ │ │ ├── HelperFunctions_NetBuffer.h │ │ │ ├── HelperFunctions_NotifyData.h │ │ │ ├── HelperFunctions_PendData.cpp │ │ │ ├── HelperFunctions_PendData.h │ │ │ ├── HelperFunctions_RedirectData.cpp │ │ │ ├── HelperFunctions_RedirectData.h │ │ │ ├── HelperFunctions_WorkItems.cpp │ │ │ ├── HelperFunctions_WorkItems.h │ │ │ ├── WFPSampler.vcxproj │ │ │ └── WFPSampler.vcxproj.Filters │ ├── ddproxy │ │ ├── README.md │ │ ├── ddproxy.sln │ │ └── sys │ │ │ ├── DD_drv.c │ │ │ ├── DD_proxy.c │ │ │ ├── DD_proxy.h │ │ │ ├── ddproxy.inf │ │ │ ├── ddproxy.vcxproj │ │ │ └── ddproxy.vcxproj.Filters │ ├── inspect │ │ ├── README.md │ │ ├── inspect.sln │ │ └── sys │ │ │ ├── TL_drv.c │ │ │ ├── inspect.c │ │ │ ├── inspect.h │ │ │ ├── inspect.inf │ │ │ ├── inspect.vcxproj │ │ │ ├── inspect.vcxproj.Filters │ │ │ ├── utils.c │ │ │ └── utils.h │ ├── msnmntr │ │ ├── README.md │ │ ├── exe │ │ │ ├── monitor.cpp │ │ │ ├── monitor.vcxproj │ │ │ ├── monitor.vcxproj.Filters │ │ │ └── mtrace.cmd │ │ ├── inc │ │ │ ├── ioctl.h │ │ │ └── mntrguid.h │ │ ├── msnmntr.sln │ │ └── sys │ │ │ ├── ctl.c │ │ │ ├── ctl.h │ │ │ ├── init.c │ │ │ ├── msnmntr.c │ │ │ ├── msnmntr.h │ │ │ ├── msnmntr.inf │ │ │ ├── msnmntr.vcxproj │ │ │ ├── msnmntr.vcxproj.Filters │ │ │ ├── notify.c │ │ │ └── notify.h │ └── stmedit │ │ ├── README.md │ │ ├── stmedit.sln │ │ └── sys │ │ ├── InlineEdit.c │ │ ├── LwQueue.c │ │ ├── LwQueue.h │ │ ├── OobEdit.c │ │ ├── StreamEdit.c │ │ ├── StreamEdit.h │ │ ├── Trace.h │ │ ├── stmedit.inf │ │ ├── stmedit.vcxproj │ │ └── stmedit.vcxproj.Filters ├── wlan │ ├── WDI │ │ ├── .gitignore │ │ ├── COMMON │ │ │ ├── 1x_eapol.h │ │ │ ├── 1x_kmsm_eapolkey.h │ │ │ ├── 1x_md5c.h │ │ │ ├── 1x_rc4.h │ │ │ ├── AES_OCB.h │ │ │ ├── AES_rijndael.h │ │ │ ├── AMSDU_Aggregation.h │ │ │ ├── ActionTimer.h │ │ │ ├── ApEngine.c │ │ │ ├── ApEngine.h │ │ │ ├── Authenticator.c │ │ │ ├── Authenticator.h │ │ │ ├── BAGen.c │ │ │ ├── BAGen.h │ │ │ ├── BssCoexistence.c │ │ │ ├── CcxGen.h │ │ │ ├── ChannelInfo.c │ │ │ ├── ChannelInfo.h │ │ │ ├── CustomizedScan.c │ │ │ ├── CustomizedScan.h │ │ │ ├── DFS.c │ │ │ ├── DFS.h │ │ │ ├── DbgCmd.h │ │ │ ├── DbgMon.h │ │ │ ├── Debug.c │ │ │ ├── Debug.h │ │ │ ├── Defrag.c │ │ │ ├── Defrag.h │ │ │ ├── Dot11RAES.h │ │ │ ├── Dot11d.c │ │ │ ├── Dot11d.h │ │ │ ├── DriverInterface.c │ │ │ ├── DrvLog.h │ │ │ ├── DrvLogImp.c │ │ │ ├── DrvLogImp.h │ │ │ ├── Frame_Buf.c │ │ │ ├── Frame_Buf.h │ │ │ ├── GeneralFunc.c │ │ │ ├── GeneralFunc.h │ │ │ ├── HTGen.c │ │ │ ├── HTGen.h │ │ │ ├── HashTable.c │ │ │ ├── Hotspot20.c │ │ │ ├── Hotspot20.h │ │ │ ├── IOTGen.h │ │ │ ├── MgntActQueryParam.c │ │ │ ├── MgntActQueryParam.h │ │ │ ├── MgntActSetParam.c │ │ │ ├── MgntActSetParam.h │ │ │ ├── MgntConstructPacket.c │ │ │ ├── MgntConstructPacket.h │ │ │ ├── MgntEngine.c │ │ │ ├── MgntEngine.h │ │ │ ├── MgntGen.c │ │ │ ├── MgntGen.h │ │ │ ├── MgntLink.c │ │ │ ├── MgntLink.h │ │ │ ├── MgntSendPacket.c │ │ │ ├── MgntSendPacket.h │ │ │ ├── MimoPs.c │ │ │ ├── MimoPs.h │ │ │ ├── Mp_Precomp.h │ │ │ ├── MultiChannels.h │ │ │ ├── MultiPorts.c │ │ │ ├── MultiPorts.h │ │ │ ├── OffChnlTx.h │ │ │ ├── P2P.c │ │ │ ├── P2P.h │ │ │ ├── P2PSvc.c │ │ │ ├── P2PSvc.h │ │ │ ├── P2PSvcType.h │ │ │ ├── P2PSvc_ActionInfo.c │ │ │ ├── P2PSvc_Construct.c │ │ │ ├── P2PSvc_Internal.h │ │ │ ├── P2PSvc_Object.c │ │ │ ├── P2PSvc_PD.c │ │ │ ├── P2PSvc_ParamSpec.c │ │ │ ├── P2PSvc_SD.c │ │ │ ├── P2PSvc_SearchResult.c │ │ │ ├── P2PSvc_Utility.c │ │ │ ├── P2P_AdditionalIe.c │ │ │ ├── P2P_AdditionalIe.h │ │ │ ├── P2P_Attribute.c │ │ │ ├── P2P_Attribute.h │ │ │ ├── P2P_Build.c │ │ │ ├── P2P_Build_Action.c │ │ │ ├── P2P_Build_Mgnt.c │ │ │ ├── P2P_Build_PublicAction.c │ │ │ ├── P2P_Channel.c │ │ │ ├── P2P_Channel.h │ │ │ ├── P2P_DevList.c │ │ │ ├── P2P_DevList.h │ │ │ ├── P2P_Indication.c │ │ │ ├── P2P_Indication.h │ │ │ ├── P2P_Internal.h │ │ │ ├── P2P_Parse.c │ │ │ ├── P2P_ProtocolSpec.h │ │ │ ├── P2P_Public.h │ │ │ ├── P2P_Receive.c │ │ │ ├── P2P_SendAction.c │ │ │ ├── P2P_SendMgnt.c │ │ │ ├── P2P_Synch.c │ │ │ ├── P2P_Synch.h │ │ │ ├── P2P_TempPublic.h │ │ │ ├── P2P_Util.c │ │ │ ├── ParserGen.c │ │ │ ├── ParserGen.h │ │ │ ├── PowerSave.h │ │ │ ├── Protocol802_11.c │ │ │ ├── Protocol802_11.h │ │ │ ├── QosGen.c │ │ │ ├── QosGen.h │ │ │ ├── RC4.h │ │ │ ├── ROGUEAP.h │ │ │ ├── RadioMeasurement.h │ │ │ ├── Receive.c │ │ │ ├── Receive.h │ │ │ ├── RxReorder.c │ │ │ ├── RxReorder.h │ │ │ ├── SMBios.h │ │ │ ├── SecurityGen.c │ │ │ ├── SecurityGen.h │ │ │ ├── Supplicant.h │ │ │ ├── TCPOFFLOADGen.h │ │ │ ├── TCPOFFLOAD_Typt.h │ │ │ ├── TDLSGen.h │ │ │ ├── TSGen.c │ │ │ ├── TSGen.h │ │ │ ├── TcpCheck.h │ │ │ ├── Transmit.c │ │ │ ├── Transmit.h │ │ │ ├── TransmitDesc.c │ │ │ ├── TransmitDesc.h │ │ │ ├── UsbModeSwitch.h │ │ │ ├── VHTGen.c │ │ │ ├── VHTGen.h │ │ │ ├── WOLPattern.c │ │ │ ├── WOLPattern.h │ │ │ ├── WPS.c │ │ │ ├── WPS.h │ │ │ ├── WPS_Def.h │ │ │ ├── Wapi.h │ │ │ ├── Widi.h │ │ │ ├── common.vcxproj │ │ │ ├── pool.c │ │ │ ├── pool.h │ │ │ ├── sha256.h │ │ │ ├── sources.props │ │ │ ├── sources.sample.list │ │ │ ├── sources.tpl.sample │ │ │ └── sources.tpl.win │ │ ├── HAL │ │ │ ├── DIRS.WlanS │ │ │ ├── HAL.mk │ │ │ ├── HALSOURCE │ │ │ │ ├── Mp_Precomp.h │ │ │ │ └── hal.vcxproj │ │ │ ├── HalADCSampling.h │ │ │ ├── HalCam.h │ │ │ ├── HalComDef.h │ │ │ ├── HalComDesc.h │ │ │ ├── HalComFirmware.h │ │ │ ├── HalComLed.h │ │ │ ├── HalComPhyCfg.h │ │ │ ├── HalComReg.h │ │ │ ├── HalComTxPwrCfg.h │ │ │ ├── HalComTxPwrLmtCfg.h │ │ │ ├── HalDM.h │ │ │ ├── HalEEPROM.h │ │ │ ├── HalEfuse.h │ │ │ ├── HalFw.h │ │ │ ├── HalH2cIOCmd.h │ │ │ ├── HalIcGlue.h │ │ │ ├── HalJaguarPhyReg.h │ │ │ ├── HalMacID.h │ │ │ ├── HalPG.h │ │ │ ├── HalPhy.h │ │ │ ├── HalPowerSave.h │ │ │ ├── HalPwrSeqCmd.h │ │ │ ├── HalSIC.h │ │ │ ├── HalSdio.h │ │ │ ├── HalTxFeedback.h │ │ │ ├── HalWoWLAN.h │ │ │ ├── halCmdPkt.h │ │ │ ├── halDbgCmd.h │ │ │ ├── phydm │ │ │ │ ├── FileEnc.exe │ │ │ │ ├── development_note.txt │ │ │ │ ├── development_note2012.txt │ │ │ │ ├── halhwimg.h │ │ │ │ ├── halphyrf_ap.h │ │ │ │ ├── halphyrf_ce.h │ │ │ │ ├── halphyrf_win.h │ │ │ │ ├── mp_precomp.h │ │ │ │ ├── phydm.h │ │ │ │ ├── phydm_acs.h │ │ │ │ ├── phydm_adaptivity.h │ │ │ │ ├── phydm_antdect.h │ │ │ │ ├── phydm_antdiv.h │ │ │ │ ├── phydm_beamforming.h │ │ │ │ ├── phydm_cfotracking.h │ │ │ │ ├── phydm_debug.h │ │ │ │ ├── phydm_dig.h │ │ │ │ ├── phydm_dynamicbbpowersaving.h │ │ │ │ ├── phydm_dynamictxpower.h │ │ │ │ ├── phydm_edcaturbocheck.h │ │ │ │ ├── phydm_hwconfig.h │ │ │ │ ├── phydm_interface.h │ │ │ │ ├── phydm_noisemonitor.h │ │ │ │ ├── phydm_pathdiv.h │ │ │ │ ├── phydm_powertracking_ap.h │ │ │ │ ├── phydm_powertracking_ce.h │ │ │ │ ├── phydm_powertracking_win.h │ │ │ │ ├── phydm_pre_define.h │ │ │ │ ├── phydm_precomp.h │ │ │ │ ├── phydm_rainfo.h │ │ │ │ ├── phydm_reg.h │ │ │ │ ├── phydm_regdefine11ac.h │ │ │ │ ├── phydm_regdefine11n.h │ │ │ │ ├── phydm_rxhp.h │ │ │ │ ├── phydm_types.h │ │ │ │ ├── rtchnlplan.h │ │ │ │ └── rtl8723b │ │ │ │ │ ├── hal8723breg.h │ │ │ │ │ ├── halhwimg8723b_bb.h │ │ │ │ │ ├── halhwimg8723b_fw.h │ │ │ │ │ ├── halhwimg8723b_mac.h │ │ │ │ │ ├── halhwimg8723b_mp.h │ │ │ │ │ ├── halhwimg8723b_rf.h │ │ │ │ │ ├── halphyrf_8723b_ce.h │ │ │ │ │ ├── halphyrf_8723b_win.h │ │ │ │ │ ├── mp_precomp.h │ │ │ │ │ ├── phydm_regconfig8723b.h │ │ │ │ │ ├── phydm_rtl8723b.h │ │ │ │ │ └── version_rtl8723b.h │ │ │ ├── rtl8723B │ │ │ │ ├── Hal8723BDefCom.h │ │ │ │ ├── Hal8723BDesc.h │ │ │ │ ├── Hal8723BEfuse.h │ │ │ │ ├── Hal8723BFirmware.h │ │ │ │ ├── Hal8723BPhyCfg.h │ │ │ │ ├── Hal8723BPhyReg.h │ │ │ │ ├── Hal8723BPwrSeq.h │ │ │ │ ├── Hal8723BRf.h │ │ │ │ └── rtl8723bs │ │ │ │ │ ├── Hal8723BSdioDef.h │ │ │ │ │ └── Hal8723BSdioLed.h │ │ │ ├── sources.list.WlanS │ │ │ ├── sources.tpl.WlanS.props │ │ │ └── sources.tpl.WlanS.win │ │ ├── HEADER │ │ │ ├── BAType.h │ │ │ ├── BssCoexistence.h │ │ │ ├── CcxType.h │ │ │ ├── ChannelType.h │ │ │ ├── CustomOid.h │ │ │ ├── DriverInterfaceDef.h │ │ │ ├── EndianFree.h │ │ │ ├── Ethernet.h │ │ │ ├── GeneralDef.h │ │ │ ├── HTType.h │ │ │ ├── HalDef.h │ │ │ ├── HashTable.h │ │ │ ├── LinkList.h │ │ │ ├── MAType.h │ │ │ ├── Object.h │ │ │ ├── PlatformDef.h │ │ │ ├── PlatformSdio.h │ │ │ ├── Precomp.h │ │ │ ├── Precomp.h.WlanS.sample │ │ │ ├── PrecompInc_sample.h │ │ │ ├── QoSType.h │ │ │ ├── RegCommon.h │ │ │ ├── RmDef.h │ │ │ ├── SecurityType.h │ │ │ ├── StatusCode.h │ │ │ ├── TDLSType.h │ │ │ ├── TSType.h │ │ │ ├── TypeDef.h │ │ │ ├── WiDiType.h │ │ │ ├── WlanDriverEvents.h │ │ │ ├── platform-os-version.h │ │ │ └── rtwlanwpp.h │ │ ├── LIB │ │ │ └── x64 │ │ │ │ ├── hal.lib │ │ │ │ └── rtklibcom.lib │ │ ├── PLATFORM │ │ │ ├── DIRS.NDIS6 │ │ │ ├── NDIS6 │ │ │ │ ├── 802_11_OID.h │ │ │ │ ├── CCX_Extension.h │ │ │ │ ├── CCX_Predef.h │ │ │ │ ├── DIRS.SDIO │ │ │ │ ├── N62C_AP.c │ │ │ │ ├── N62C_AP.h │ │ │ │ ├── N62C_AP_Def.h │ │ │ │ ├── N62C_Init.c │ │ │ │ ├── N62C_Init.h │ │ │ │ ├── N62C_Oids.c │ │ │ │ ├── N62C_Oids.h │ │ │ │ ├── N62C_Port.c │ │ │ │ ├── N62C_Port.h │ │ │ │ ├── N62C_QueryOID.c │ │ │ │ ├── N62C_QueryOID.h │ │ │ │ ├── N62C_QuerySetOID.c │ │ │ │ ├── N62C_QuerySetOID.h │ │ │ │ ├── N62C_SetOID.c │ │ │ │ ├── N62C_SetOID.h │ │ │ │ ├── N62C_def.h │ │ │ │ ├── N63C_Oids.c │ │ │ │ ├── N63C_Oids.h │ │ │ │ ├── N63C_SendAction.c │ │ │ │ ├── N63C_SendAction.h │ │ │ │ ├── N6C_Init.c │ │ │ │ ├── N6C_Init.h │ │ │ │ ├── N6C_OidQuery.c │ │ │ │ ├── N6C_OidQuery.h │ │ │ │ ├── N6C_OidSet.c │ │ │ │ ├── N6C_OidSet.h │ │ │ │ ├── N6C_Oids.c │ │ │ │ ├── N6C_Oids.h │ │ │ │ ├── N6C_PlatformDef.c │ │ │ │ ├── N6C_PlatformDef.h │ │ │ │ ├── N6C_Req.c │ │ │ │ ├── N6C_Req.h │ │ │ │ ├── Ndis6Common.c │ │ │ │ ├── Ndis6Common.h │ │ │ │ ├── Ndis_OID.h │ │ │ │ ├── SDIO │ │ │ │ │ ├── CppDrvReg.h │ │ │ │ │ ├── Mp_Precomp.h │ │ │ │ │ ├── Mp_Req.c │ │ │ │ │ ├── N6SdioPlatformWindows.c │ │ │ │ │ ├── N6SdioPlatformWindows.h │ │ │ │ │ ├── N6Sdio_DrvIF.c │ │ │ │ │ ├── N6Sdio_PlatformSdioWdf.c │ │ │ │ │ ├── N6Sdio_PlatformSdioWdf.h │ │ │ │ │ ├── N6Sdio_PlatformSdioWdm.c │ │ │ │ │ ├── N6Sdio_PlatformSdioWdm.h │ │ │ │ │ ├── N6Sdio_WdiMain.c │ │ │ │ │ ├── N6Sdio_WdiMain.h │ │ │ │ │ ├── N6Sdio_dbg.c │ │ │ │ │ ├── N6Sdio_dbg.h │ │ │ │ │ ├── N6Sdio_info.h │ │ │ │ │ ├── N6Sdio_main.c │ │ │ │ │ ├── N6Sdio_main.h │ │ │ │ │ ├── N6Sdio_mechanism.c │ │ │ │ │ ├── N6Sdio_typedef.h │ │ │ │ │ ├── n60_sdio.inc │ │ │ │ │ ├── n62_sdio.inc │ │ │ │ │ ├── n6c_sdio.inc.props │ │ │ │ │ ├── rtwlans.rc │ │ │ │ │ ├── rtwlansmp.rc │ │ │ │ │ ├── sdio.vcxproj │ │ │ │ │ ├── sources.lib.list │ │ │ │ │ ├── sources.list │ │ │ │ │ ├── sources.props │ │ │ │ │ ├── sources.tpl.props │ │ │ │ │ └── sources.tpl.win │ │ │ │ ├── WDI_Cmds.c │ │ │ │ ├── WDI_Cmds.h │ │ │ │ ├── WDI_Common.c │ │ │ │ ├── WDI_Common.h │ │ │ │ ├── WDI_Extension.c │ │ │ │ ├── WDI_Extension.h │ │ │ │ ├── WDI_SendAction.c │ │ │ │ ├── WDI_SendAction.h │ │ │ │ ├── WDI_Xlat.c │ │ │ │ ├── WDI_Xlat.h │ │ │ │ ├── WDI_def.h │ │ │ │ └── new.cpp │ │ │ ├── NdisComm │ │ │ │ ├── Mp_Precomp.h │ │ │ │ ├── NdisComm.c │ │ │ │ ├── NdisComm.h │ │ │ │ ├── NdisComm.vcxproj │ │ │ │ ├── NdisDbg.c │ │ │ │ ├── NdisDbg.h │ │ │ │ ├── NdisOid.c │ │ │ │ ├── NdisOid.h │ │ │ │ ├── makefile.Win │ │ │ │ ├── sources.list │ │ │ │ ├── sources.props │ │ │ │ ├── sources.tpl.props │ │ │ │ └── sources.tpl.win │ │ │ ├── WinInf │ │ │ │ └── SDIO │ │ │ │ │ ├── InfSupportFeature.ini │ │ │ │ │ ├── InfSupportIC.ini │ │ │ │ │ ├── InfSupportOS.ini │ │ │ │ │ └── x64 │ │ │ │ │ └── netrtwlans.inf │ │ │ ├── svn_version.h │ │ │ └── svn_version.tmpl │ │ ├── README.md │ │ └── windows.msbuild.rtwssample.sln │ └── ihvsampleui │ │ ├── IHVClassFactory.cpp │ │ ├── IHVClassFactory.h │ │ ├── IHVRegistryHelper.cpp │ │ ├── IHVRegistryHelper.h │ │ ├── IHVSample.idl │ │ ├── IHVSampleExtUI.cpp │ │ ├── IHVSampleExtUI.h │ │ ├── IHVSampleExtUICon.cpp │ │ ├── IHVSampleExtUICon.h │ │ ├── IHVSampleExtUIKey.cpp │ │ ├── IHVSampleExtUIKey.h │ │ ├── IHVSampleExtUISec.cpp │ │ ├── IHVSampleExtUISec.h │ │ ├── IHVSampleProfile.cpp │ │ ├── IHVSampleProfile.h │ │ ├── IHVSampleUI.cpp │ │ ├── IHVSampleUI.def │ │ ├── IHVSampleUI.rc │ │ ├── IHVSampleUI.vcxproj │ │ ├── IHVSampleUI.vcxproj.Filters │ │ ├── IHVUIInc.idl │ │ ├── README.md │ │ ├── iunk.h │ │ ├── precomp.h │ │ ├── resource.h │ │ ├── utils.cpp │ │ └── utils.h ├── wsk │ └── echosrv │ │ ├── README.md │ │ ├── echosrv.ctl │ │ ├── echosrv.sln │ │ ├── echosrv.vcxproj │ │ ├── echosrv.vcxproj.Filters │ │ ├── wsksmple.c │ │ └── wsksmple.rc └── wwan │ └── cxwmbclass │ ├── README.md │ ├── adapter.cpp │ ├── businit.cpp │ ├── cxwmbclass.rc │ ├── cxwmbclass.sln │ ├── cxwmbclass │ ├── cxwmbclass.inf │ ├── cxwmbclass.vcxproj │ └── cxwmbclass.vcxproj.filters │ ├── datapipe.cpp │ ├── device.cpp │ ├── driver.cpp │ ├── inc │ ├── BusInterface.h │ ├── MbbLibrary.h │ ├── adapter.h │ ├── align.h │ ├── data.h │ ├── device.h │ ├── mbbmessages.h │ ├── mbbncm.h │ ├── power.h │ ├── precomp.h │ ├── rxqueue.h │ ├── txqueue.h │ ├── usbbus.h │ ├── util.h │ └── utils.h │ ├── power.cpp │ ├── rxqueue.cpp │ ├── txqueue.cpp │ ├── util.cpp │ └── utils.cpp ├── nfc └── NfcCxSample │ ├── README.md │ ├── windows-drivertemplate-nfc.sln │ └── windows-drivertemplate-nfc │ ├── Device.cpp │ ├── Device.h │ ├── Driver.cpp │ ├── windows-drivertemplate-nfc.inf │ ├── windows-drivertemplate-nfc.vcxproj │ └── windows-drivertemplate-nfc.vcxproj.filters ├── nfp └── net │ ├── NetNfpProvider.htm │ ├── README.md │ ├── exe │ ├── NetNfpControl.cpp │ ├── NetNfpControl.vcxproj │ ├── NetNfpControl.vcxproj.Filters │ ├── precomp.h │ └── precompsrc.cpp │ ├── inc │ └── NetNfp.h │ └── netnfp.sln ├── packages.config ├── pofx ├── PEP │ ├── README.md │ ├── acpi │ │ ├── acpispecific.c │ │ ├── acpispecific.h │ │ ├── pchsrc.c │ │ ├── sampleacpipep.inx │ │ ├── sampleacpipep.rc │ │ ├── sampleacpipep.vcxproj │ │ ├── sampleacpipep.vcxproj.Filters │ │ └── testdevice.c │ ├── common │ │ ├── acpinotify.c │ │ ├── driver.c │ │ ├── pchsrc.c │ │ ├── pep.c │ │ ├── pepcommon.vcxproj │ │ ├── pepcommon.vcxproj.Filters │ │ ├── util.c │ │ └── work.c │ ├── inc │ │ ├── common.h │ │ ├── pch.h │ │ ├── pep.h │ │ └── trace.h │ └── pepsamples.sln ├── UMDF2 │ ├── App │ │ ├── PowerFxApp.cpp │ │ ├── PowerFxApp.vcxproj │ │ ├── PowerFxApp.vcxproj.Filters │ │ ├── UserInput.cpp │ │ └── include.h │ ├── Driver │ │ └── SingleComp │ │ │ ├── HwSim.c │ │ │ ├── HwSim.h │ │ │ ├── SingleComponentSingleStateUm.inx │ │ │ ├── SingleComponentSingleStateUm.vcxproj │ │ │ ├── SingleComponentSingleStateUm.vcxproj.Filters │ │ │ ├── driver.c │ │ │ ├── driver.h │ │ │ └── include.h │ ├── README.md │ ├── inc │ │ └── AppInterface.h │ └── pofx.sln └── WDF │ ├── App │ ├── PowerFxApp.cpp │ ├── PowerFxApp.vcxproj │ ├── PowerFxApp.vcxproj.Filters │ ├── UserInput.cpp │ └── include.h │ ├── Driver │ ├── MultiComp │ │ ├── driver │ │ │ ├── HwSim.c │ │ │ ├── HwSim.h │ │ │ ├── WdfMultiComp.c │ │ │ ├── WdfMultiComp.h │ │ │ ├── WdfMultiComp.inx │ │ │ ├── WdfMultiComp.vcxproj │ │ │ └── WdfMultiComp.vcxproj.Filters │ │ ├── inc │ │ │ └── WdfPoFx.h │ │ └── lib │ │ │ ├── WdfPoFx.vcxproj │ │ │ ├── WdfPoFx.vcxproj.Filters │ │ │ ├── WdfPoFxPriv.h │ │ │ ├── component.c │ │ │ ├── device.c │ │ │ ├── init.c │ │ │ ├── s0idle.c │ │ │ └── s0idle.h │ └── SingleComp │ │ ├── HwSim.c │ │ ├── HwSim.h │ │ ├── SingleComponentFStateDriver.vcxproj │ │ ├── SingleComponentFStateDriver.vcxproj.Filters │ │ ├── SingleComponentFStateSample.inx │ │ ├── driver.c │ │ ├── driver.h │ │ └── include.h │ ├── README.md │ ├── WdfMultiComp_overview.svg │ ├── inc │ └── AppInterface.h │ └── pofx.sln ├── pos └── drivers │ ├── MagneticStripeReader │ ├── Device.cpp │ ├── Device.h │ ├── Driver.cpp │ ├── File.cpp │ ├── File.h │ ├── IoRead.cpp │ ├── IoRead.h │ ├── Ioctl.cpp │ ├── Ioctl.h │ ├── MagneticStripeReader.sln │ ├── PosEvents.cpp │ ├── PosEvents.h │ ├── README.md │ ├── SampleMagneticStripeReaderDrv.inf │ ├── SampleMagneticStripeReaderDrv.vcxproj │ ├── SampleMagneticStripeReaderDrv.vcxproj.Filters │ ├── exports.def │ ├── pch.h │ └── pchsrc.cpp │ └── barcodescanner │ ├── BarcodeScanner.sln │ ├── Device.cpp │ ├── Device.h │ ├── Driver.cpp │ ├── File.cpp │ ├── File.h │ ├── IoRead.cpp │ ├── IoRead.h │ ├── Ioctl.cpp │ ├── Ioctl.h │ ├── PosEvents.cpp │ ├── PosEvents.h │ ├── README.md │ ├── SampleBarcodeScannerDrv.inf │ ├── SampleBarcodeScannerDrv.vcxproj │ ├── SampleBarcodeScannerDrv.vcxproj.Filters │ ├── exports.def │ ├── pch.h │ └── pchsrc.cpp ├── powerlimit ├── plclient │ ├── README.md │ ├── plclient.asl │ ├── plclient.c │ ├── plclient.h │ ├── plclient.inf │ ├── plclient.rc │ ├── plclient.sln │ ├── plclient.vcxproj │ ├── plclient.vcxproj.filters │ ├── powerlimitclient_drvinterface.h │ └── wdf.c └── plpolicy │ ├── README.md │ ├── plpolicy.c │ ├── plpolicy.h │ ├── plpolicy.inf │ ├── plpolicy.rc │ ├── plpolicy.sln │ ├── plpolicy.vcxproj │ ├── plpolicy.vcxproj.filters │ ├── powerlimitpolicy_drvinterface.h │ └── wdf.c ├── print ├── .gitignore └── README.md ├── prm ├── PrmFunc │ ├── prmfuncsample.c │ ├── prmfuncsample.h │ ├── prmfuncsample.inf │ ├── prmfuncsample.vcxproj │ └── prmfuncsample.vcxproj.Filters ├── README.md └── prmsample.sln ├── sd └── miniport │ └── sdhc │ ├── README.md │ ├── inbox │ ├── sdhc.vcxproj │ └── sdhc.vcxproj.Filters │ ├── sdhc.c │ ├── sdhc.h │ ├── sdhc.inx │ ├── sdhc.rc │ └── sdhc.sln ├── security └── elam │ ├── README.md │ ├── elam.sln │ ├── elamsample.c │ ├── elamsample.h │ ├── elamsample.rc │ ├── elamsample.vcxproj │ └── elamsample.vcxproj.Filters ├── sensors ├── ADXL345Acc │ ├── ADXL345Acc.asl │ ├── ADXL345Acc.def │ ├── ADXL345Acc.inx │ ├── ADXL345Acc.sln │ ├── ADXL345Acc.vcxproj │ ├── ADXL345Acc.vcxproj.Filters │ ├── Device.h │ ├── Driver.h │ ├── SensorsTrace.h │ ├── adxl345.h │ ├── client.cpp │ ├── device.cpp │ ├── driver.cpp │ └── readme.md ├── Activity │ ├── Activity.def │ ├── Activity.inx │ ├── Activity.sln │ ├── Activity.vcxproj │ ├── Activity.vcxproj.Filters │ ├── Device.h │ ├── Driver.h │ ├── HardwareSimulator.h │ ├── SensorsTrace.h │ ├── client.cpp │ ├── device.cpp │ ├── driver.cpp │ ├── hardwaresimulator.cpp │ └── readme.md ├── CustomSensors │ ├── CustomSensors.def │ ├── CustomSensors.inx │ ├── CustomSensors.sln │ ├── CustomSensors.vcxproj │ ├── CustomSensors.vcxproj.Filters │ ├── Device.h │ ├── Driver.h │ ├── HardwareSimulator.h │ ├── SensorsTrace.h │ ├── client.cpp │ ├── device.cpp │ ├── driver.cpp │ ├── hardwaresimulator.cpp │ └── readme.md ├── Fusion │ ├── Device.h │ ├── Driver.h │ ├── FusionSensor.ctl │ ├── FusionSensor.def │ ├── FusionSensor.inx │ ├── FusionSensor.sln │ ├── FusionSensor.vcxproj │ ├── FusionSensor.vcxproj.Filters │ ├── HardwareSimulator.h │ ├── SensorsTrace.h │ ├── client.cpp │ ├── device.cpp │ ├── driver.cpp │ ├── hardwaresimulator.cpp │ └── readme.md ├── Pedometer │ ├── Device.h │ ├── Driver.h │ ├── HardwareSimulator.h │ ├── Pedometer.def │ ├── Pedometer.inx │ ├── Pedometer.sln │ ├── Pedometer.vcxproj │ ├── Pedometer.vcxproj.Filters │ ├── SensorsTrace.h │ ├── client.cpp │ ├── device.cpp │ ├── driver.cpp │ ├── hardwaresimulator.cpp │ └── readme.md ├── SensorsComboDriver │ ├── AlsClient.cpp │ ├── BarClient.cpp │ ├── Clients.cpp │ ├── Clients.h │ ├── Device.cpp │ ├── Driver.cpp │ ├── Driver.h │ ├── GeomagneticOrientationClient.cpp │ ├── GravityVectorClient.cpp │ ├── GyrClient.cpp │ ├── MagClient.cpp │ ├── PrxClient.cpp │ ├── SensorsComboDriver.inx │ ├── SensorsComboDriver.sln │ ├── SensorsComboDriver.vcxproj │ ├── SensorsComboDriver.vcxproj.Filters │ ├── SensorsTrace.h │ ├── linearaccelerometerclient.cpp │ ├── readme.md │ └── relativefusionclient.cpp └── SimpleDeviceOrientationSensor │ ├── Device.h │ ├── Driver.h │ ├── HardwareSimulator.h │ ├── SensorsTrace.h │ ├── SimpleDeviceOrientationSensor.def │ ├── SimpleDeviceOrientationSensor.inx │ ├── SimpleDeviceOrientationSensor.sln │ ├── SimpleDeviceOrientationSensor.vcxproj │ ├── SimpleDeviceOrientationSensor.vcxproj.Filters │ ├── client.cpp │ ├── device.cpp │ ├── driver.cpp │ ├── hardwaresimulator.cpp │ └── readme.md ├── serial ├── VirtualSerial2 │ ├── ComPort │ │ ├── VirtualSerial2um.vcxproj │ │ ├── VirtualSerial2um.vcxproj.Filters │ │ ├── virtualserial2um.inx │ │ └── virtualserial2um.rc │ ├── FakeModem │ │ ├── fakemodem2um.inx │ │ ├── fakemodem2um.rc │ │ ├── fakemodem2um.vcxproj │ │ └── fakemodem2um.vcxproj.Filters │ ├── README.md │ ├── VirtualSerial.sln │ ├── device.c │ ├── device.h │ ├── driver.c │ ├── driver.h │ ├── internal.h │ ├── queue.c │ ├── queue.h │ ├── ringbuffer.c │ ├── ringbuffer.h │ └── serial.h ├── serenum │ ├── README.md │ ├── SerEnum_sample.vcxproj │ ├── SerEnum_sample.vcxproj.Filters │ ├── enum.c │ ├── log.c │ ├── log.h │ ├── pch.h │ ├── pchsrc.c │ ├── pnp.c │ ├── power.c │ ├── serenum.c │ ├── serenum.h │ ├── serenum.rc │ ├── serenum.sln │ └── string.c └── serial │ ├── README.md │ ├── error.c │ ├── flush.c │ ├── immediat.c │ ├── initunlo.c │ ├── ioctl.c │ ├── isr.c │ ├── log.c │ ├── log.h │ ├── modmflow.c │ ├── openclos.c │ ├── pnp.c │ ├── power.c │ ├── precomp.h │ ├── precompsrc.c │ ├── purge.c │ ├── qsfile.c │ ├── read.c │ ├── registry.c │ ├── serial.h │ ├── serial.inx │ ├── serial.rc │ ├── serial.sln │ ├── serialp.h │ ├── serlog.mc │ ├── trace.h │ ├── utils.c │ ├── waitmask.c │ ├── wdfserial.vcxproj │ ├── wdfserial.vcxproj.Filters │ ├── wmi.c │ └── write.c ├── setup └── devcon │ ├── README.md │ ├── cmds.cpp │ ├── devcon.cpp │ ├── devcon.h │ ├── devcon.rc │ ├── devcon.sln │ ├── devcon.vcxproj │ ├── devcon.vcxproj.Filters │ ├── dump.cpp │ ├── msg.mc │ └── rc_ids.h ├── simbatt ├── README.md └── func │ ├── batclass_prepublish.h │ ├── miniclass.c │ ├── simbatt.h │ ├── simbatt.inx │ ├── simbatt.rc │ ├── simbatt.sln │ ├── simbatt.vcxproj │ ├── simbatt.vcxproj.Filters │ ├── simbattdriverif.h │ └── wdf.c ├── smartcrd ├── README.md ├── pscr │ ├── Pscr.vcxproj │ ├── Pscr.vcxproj.Filters │ ├── pscr.inx │ ├── pscr.rc │ ├── pscrcb.c │ ├── pscrcb.h │ ├── pscrcmd.c │ ├── pscrcmd.h │ ├── pscrlog.mc │ ├── pscrnt.c │ ├── pscrnt.h │ ├── pscrrdwr.c │ ├── pscrrdwr.h │ └── pscrvers.h └── smartcrd.sln ├── spb ├── SkeletonI2C │ ├── README.md │ ├── SkeletonI2C.sln │ ├── controller.cpp │ ├── controller.h │ ├── device.cpp │ ├── device.h │ ├── driver.cpp │ ├── driver.h │ ├── hw.cpp │ ├── hw.h │ ├── i2ctrace.h │ ├── internal.h │ ├── resource.rc │ ├── skeletoni2c.asl │ ├── skeletoni2c.h │ ├── skeletoni2c.inx │ ├── skeletoni2c.vcxproj │ └── skeletoni2c.vcxproj.Filters └── SpbTestTool │ ├── README.md │ ├── SpbTestTool.htm │ ├── SpbTestTool.sln │ ├── exe │ ├── SpbTestTool.vcxproj │ ├── SpbTestTool.vcxproj.Filters │ ├── command.cpp │ ├── command.h │ ├── internal.h │ ├── main.cpp │ └── util.cpp │ └── sys │ ├── SpbTestTool.vcxproj │ ├── SpbTestTool.vcxproj.Filters │ ├── device.cpp │ ├── device.h │ ├── driver.cpp │ ├── driver.h │ ├── internal.h │ ├── peripheral.cpp │ ├── peripheral.h │ ├── resource.rc │ ├── spbtestioctl.h │ ├── spbtesttool.asl │ ├── spbtesttool.inx │ └── trace.h ├── storage ├── class │ ├── classpnp │ │ ├── README.md │ │ ├── classpnp.sln │ │ └── src │ │ │ ├── autorun.c │ │ │ ├── class.c │ │ │ ├── class.def │ │ │ ├── class.rc │ │ │ ├── classlog.mof │ │ │ ├── classp.h │ │ │ ├── classpnp.vcxproj │ │ │ ├── classpnp.vcxproj.Filters │ │ │ ├── classwmi.c │ │ │ ├── clntirp.c │ │ │ ├── create.c │ │ │ ├── data.c │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dictlib.c │ │ │ ├── dispatch.c │ │ │ ├── history.c │ │ │ ├── lock.c │ │ │ ├── obsolete.c │ │ │ ├── power.c │ │ │ ├── retry.c │ │ │ ├── srblib.c │ │ │ ├── utils.c │ │ │ └── xferpkt.c │ └── disk │ │ ├── README.md │ │ ├── disk.sln │ │ └── src │ │ ├── data.c │ │ ├── disk.c │ │ ├── disk.h │ │ ├── disk.rc │ │ ├── disk.vcxproj │ │ ├── disk.vcxproj.Filters │ │ ├── diskdev.inf │ │ ├── diskwmi.c │ │ ├── enum.c │ │ ├── geometry.c │ │ └── pnp.c ├── iscsi │ ├── README.md │ ├── iscsi.sln │ └── src │ │ ├── EmptyProject.vcxproj │ │ ├── EmptyProject.vcxproj.Filters │ │ ├── blockdir │ │ ├── client │ │ └── wmisample.c │ │ ├── common.mof │ │ ├── config.mof │ │ ├── def.mof │ │ ├── iscsihba.mof │ │ ├── iscsiprf.mof │ │ ├── mgmt.mof │ │ └── readme.txt ├── miniports │ ├── lsi_u3 │ │ ├── README.md │ │ ├── lsi_u3.sln │ │ └── src │ │ │ ├── lsi_u3.c │ │ │ ├── lsi_u3.h │ │ │ ├── lsi_u3.inf │ │ │ ├── lsi_u3.rc │ │ │ ├── lsi_u3.vcxproj │ │ │ ├── lsi_u3.vcxproj.Filters │ │ │ ├── lsidmi.h │ │ │ ├── lsinvm.h │ │ │ ├── lsisiop.h │ │ │ ├── lsisvdt.h │ │ │ ├── lsiver.h │ │ │ └── scr_u3m.h │ └── storahci │ │ ├── README.md │ │ ├── src │ │ ├── ahci.h │ │ ├── common.c │ │ ├── common.h │ │ ├── data.h │ │ ├── entrypts.c │ │ ├── entrypts.h │ │ ├── generic.h │ │ ├── hbastat.c │ │ ├── hbastat.h │ │ ├── inbox │ │ │ ├── storahci.vcxproj │ │ │ └── storahci.vcxproj.Filters │ │ ├── io.c │ │ ├── io.h │ │ ├── pnppower.c │ │ ├── pnppower.h │ │ ├── storahci.rc │ │ ├── util.c │ │ └── util.h │ │ └── storahci.sln ├── msdsm │ ├── README.md │ ├── msdsm.sln │ └── src │ │ ├── SampleDSM.inf │ │ ├── SampleDSM.vcxproj │ │ ├── SampleDSM.vcxproj.Filters │ │ ├── dsmmain.c │ │ ├── dsmtrace.mof │ │ ├── intrface.c │ │ ├── msdsm.h │ │ ├── msdsm.mof │ │ ├── msdsm.rc │ │ ├── msdsmdsm.mof │ │ ├── precomp.h │ │ ├── precompsrc.c │ │ ├── prototypes.h │ │ ├── trace.h │ │ ├── utils.c │ │ └── wmi.c └── tools │ └── spti │ ├── README.md │ ├── spti.sln │ └── src │ ├── spti.c │ ├── spti.h │ ├── spti.vcxproj │ └── spti.vcxproj.Filters ├── thermal ├── simsensor │ ├── README.md │ ├── simsensor.c │ ├── simsensor.h │ ├── simsensor.inf │ ├── simsensor.rc │ ├── simsensor.sln │ ├── simsensor.vcxproj │ ├── simsensor.vcxproj.Filters │ └── thermalsample.asl └── thermalclient │ ├── README.md │ ├── simtc.c │ ├── simtc.h │ ├── simtc.inf │ ├── simtc.rc │ ├── simtc.vcxproj │ ├── simtc.vcxproj.Filters │ ├── thermalclient.sln │ └── thermalsample.asl ├── tools ├── dv │ └── samples │ │ └── DV-FailDriver-WDM │ │ ├── README.md │ │ ├── defect_toastmon.c │ │ ├── defect_toastmon.h │ │ ├── defect_toastmon.rc │ │ ├── driver.h │ │ ├── driver │ │ ├── DV-FailDriver-WDM.sln │ │ ├── defect_toastmon.inf │ │ ├── defect_toastmon.vcxproj │ │ └── defect_toastmon.vcxproj.Filters │ │ ├── public.h │ │ └── wmi.c ├── kasan │ └── samples │ │ └── KasanDemo-WDM │ │ ├── KasanDemo.sln │ │ ├── README.md │ │ ├── exe │ │ ├── kasanagent.c │ │ ├── kasanagent.vcxproj │ │ └── kasanagent.vcxproj.Filters │ │ └── sys │ │ ├── kasantrigger.c │ │ ├── kasantrigger.h │ │ ├── kasantrigger.rc │ │ ├── kasantrigger.vcxproj │ │ └── kasantrigger.vcxproj.Filters └── sdv │ └── samples │ ├── SDV-FailDriver-KMDF │ ├── README.md │ ├── SDV-FailDriver-KMDF.sln │ ├── driver │ │ ├── fail_driver1.c │ │ ├── fail_driver1.h │ │ ├── fail_driver1.vcxproj │ │ ├── fail_driver1.vcxproj.Filters │ │ └── sdv-user.sdv │ └── library │ │ ├── fail_library1.c │ │ ├── fail_library1.h │ │ ├── fail_library1.vcxproj │ │ └── fail_library1.vcxproj.Filters │ ├── SDV-FailDriver-NDIS │ ├── README.md │ ├── SDV-FailDriver-NDIS.sln │ └── driver │ │ ├── main.c │ │ ├── mp.h │ │ ├── sdv-user.sdv │ │ ├── sdvmp.rc │ │ ├── sdvmp.vcxproj │ │ └── sdvmp.vcxproj.Filters │ ├── SDV-FailDriver-STORPORT │ ├── README.md │ ├── SDV-FailDriver-STORPORT.sln │ └── driver │ │ ├── MAKEFILE.ddk │ │ ├── SCR_U3M.H │ │ ├── lsi_u3.c │ │ ├── lsi_u3.h │ │ ├── lsi_u3.rc │ │ ├── lsi_u3.vcxproj │ │ ├── lsi_u3.vcxproj.Filters │ │ ├── lsi_u3_inf.txt │ │ ├── lsidmi.h │ │ ├── lsinvm.h │ │ ├── lsisiop.h │ │ ├── lsisvdt.h │ │ ├── lsiver.h │ │ └── sdv-user.sdv │ └── SDV-FailDriver-WDM │ ├── README.md │ ├── SDV-FailDriver-WDM.sln │ └── driver │ ├── fail_driver1.c │ ├── fail_driver1.h │ ├── fail_driver1.vcxproj │ ├── fail_driver1.vcxproj.Filters │ └── sdv-user.sdv ├── usb ├── UcmCxUcsi │ ├── Acpi.cpp │ ├── Acpi.h │ ├── Driver.cpp │ ├── Driver.h │ ├── Fdo.cpp │ ├── Fdo.h │ ├── Pch.h │ ├── Ppm.cpp │ ├── Ppm.h │ ├── README.md │ ├── Trace.h │ ├── UcmCallbacks.cpp │ ├── UcmCallbacks.h │ ├── UcmCxUcsi.inf │ ├── UcmCxUcsi.sln │ ├── UcmCxUcsi.vcxproj │ ├── UcmCxUcsi.vcxproj.Filters │ ├── UcmNotifications.cpp │ ├── UcmNotifications.h │ ├── Ucsi.h │ ├── UcsiInterface.h │ ├── UcsiUcmConvert.h │ └── resource.rc ├── UcmTcpciCxClientSample │ ├── Alert.cpp │ ├── Alert.h │ ├── Device.cpp │ ├── Device.h │ ├── Driver.cpp │ ├── Driver.h │ ├── I2C.cpp │ ├── I2C.h │ ├── PortControllerInterface.cpp │ ├── PortControllerInterface.h │ ├── Queue.cpp │ ├── Queue.h │ ├── README.md │ ├── Register.h │ ├── Sample.asl │ ├── Trace.h │ ├── UcmTcpciCxClientSample.inf │ ├── UcmTcpciCxClientSample.sln │ ├── UcmTcpciCxClientSample.vcxproj │ ├── UcmTcpciCxClientSample.vcxproj.Filters │ ├── makefile │ └── resource.rc ├── UcmUcsiAcpiSample │ ├── README.md │ ├── UcmUcsiAcpiSample.sln │ └── UcmUcsiAcpiSample │ │ ├── Acpi.cpp │ │ ├── Acpi.h │ │ ├── Driver.cpp │ │ ├── Driver.h │ │ ├── Fdo.cpp │ │ ├── Fdo.h │ │ ├── MemoryKm.cpp │ │ ├── Pch.h │ │ ├── Ppm.cpp │ │ ├── Ppm.h │ │ ├── ProjectCommon.h │ │ ├── Trace.h │ │ ├── UCM.h │ │ ├── UcmUcsiAcpiSample.inf │ │ ├── UcmUcsiAcpiSample.vcxproj │ │ └── UcmUcsiAcpiSample.vcxproj.filters ├── kmdf_enumswitches │ ├── README.md │ ├── inc │ │ ├── prototypes.h │ │ └── public.h │ ├── kmdf_enumswitches.sln │ └── sys │ │ ├── Device.c │ │ ├── driver.c │ │ ├── interrupt.c │ │ ├── kmdf_enumswitches.inx │ │ ├── kmdf_enumswitches.vcxproj │ │ ├── kmdf_enumswitches.vcxproj.Filters │ │ ├── osrusbfx2.h │ │ ├── rawpdo.c │ │ ├── rawpdo.h │ │ └── trace.h ├── kmdf_fx2 │ ├── README.md │ ├── deviceMetadata │ │ └── B4D697F5-1C56-4807-ACCD-B28C09D37FF0.devicemetadata-ms │ ├── driver │ │ ├── Device.c │ │ ├── bulkrwr.c │ │ ├── driver.c │ │ ├── interrupt.c │ │ ├── ioctl.c │ │ ├── osrusbfx2.h │ │ ├── osrusbfx2.inx │ │ ├── osrusbfx2.man │ │ ├── osrusbfx2.rc │ │ ├── osrusbfx2.vcxproj │ │ ├── osrusbfx2.vcxproj.Filters │ │ └── trace.h │ ├── exe │ │ ├── dump.c │ │ ├── osrusbfx2.vcxproj │ │ ├── osrusbfx2.vcxproj.Filters │ │ ├── test.cmd │ │ ├── testapp.c │ │ └── testapp.rc │ ├── inc │ │ ├── prototypes.h │ │ └── public.h │ └── kmdf_fx2.sln ├── ufxclientsample │ ├── README.md │ ├── UfxClientSample.inx │ ├── UfxClientSample.man │ ├── defaultqueue.c │ ├── defaultqueue.h │ ├── device.c │ ├── device.h │ ├── driver.c │ ├── driver.h │ ├── event.c │ ├── event.h │ ├── interrupt.c │ ├── interrupt.h │ ├── registers.c │ ├── registers.h │ ├── trace.h │ ├── transfer.c │ ├── transfer.h │ ├── ufxclientsample.rc │ ├── ufxclientsample.sln │ ├── ufxclientsample.vcxproj │ ├── ufxclientsample.vcxproj.Filters │ ├── ufxdevice.c │ ├── ufxdevice.h │ ├── ufxendpoint.c │ └── ufxendpoint.h ├── umdf2_fx2 │ ├── README.md │ ├── deviceMetadata │ │ └── B4D697F5-1C56-4807-ACCD-B28C09D37FF0.devicemetadata-ms │ ├── driver │ │ ├── Device.c │ │ ├── bulkrwr.c │ │ ├── driver.c │ │ ├── interrupt.c │ │ ├── ioctl.c │ │ ├── osrusbfx2.h │ │ ├── osrusbfx2.man │ │ ├── osrusbfx2.rc │ │ ├── osrusbfx2um.inx │ │ ├── osrusbfx2um.vcxproj │ │ ├── osrusbfx2um.vcxproj.Filters │ │ └── trace.h │ ├── exe │ │ ├── dump.c │ │ ├── osrusbfx2.vcxproj │ │ ├── osrusbfx2.vcxproj.Filters │ │ ├── test.cmd │ │ ├── testapp.c │ │ └── testapp.rc │ ├── inc │ │ ├── prototypes.h │ │ └── public.h │ └── umdf2_fx2.sln ├── usbsamp │ ├── README.md │ ├── exe │ │ ├── testapp.c │ │ ├── testapp.rc │ │ ├── usbsamp.vcxproj │ │ └── usbsamp.vcxproj.Filters │ ├── sys │ │ ├── bulkrwr.c │ │ ├── device.c │ │ ├── driver.c │ │ ├── driver │ │ │ ├── usbsamp.inx │ │ │ ├── usbsamp.vcxproj │ │ │ └── usbsamp.vcxproj.Filters │ │ ├── isorwr.c │ │ ├── private.h │ │ ├── public.h │ │ ├── queue.c │ │ ├── stream.c │ │ └── usbsamp.rc │ └── usbsamp.sln ├── usbview │ ├── README.md │ ├── app.config │ ├── bang.ico │ ├── codeanalysis.h │ ├── debug.c │ ├── devnode.c │ ├── dispaud.c │ ├── display.c │ ├── dispvid.c │ ├── enum.c │ ├── h264.c │ ├── h264.h │ ├── hub.ico │ ├── langidlist.h │ ├── monitor.ico │ ├── port.ico │ ├── resource.h │ ├── split.cur │ ├── ssport.ico │ ├── ssusb.ico │ ├── usb.ico │ ├── usbdesc.h │ ├── usbschema.hpp │ ├── usbviddesc.h │ ├── usbview.sln │ ├── usbview.vcxproj │ ├── usbview.vcxproj.Filters │ ├── uvcdesc.h │ ├── uvcview.c │ ├── uvcview.h │ ├── uvcview.rc │ ├── vndrlist.h │ ├── xmlhelper.cpp │ └── xmlhelper.h └── wdf_osrfx2_lab │ ├── README.md │ ├── kmdf │ ├── exe │ │ ├── dump.c │ │ ├── osrusbfx2.vcxproj │ │ ├── osrusbfx2.vcxproj.Filters │ │ ├── test.cmd │ │ ├── testapp.c │ │ └── testapp.rc │ ├── inc │ │ ├── prototypes.h │ │ └── public.h │ ├── step1 │ │ ├── osrusbfx2.inx │ │ ├── osrusbfx2.vcxproj │ │ ├── osrusbfx2.vcxproj.Filters │ │ └── step1.c │ ├── step2 │ │ ├── osrusbfx2.inx │ │ ├── osrusbfx2.vcxproj │ │ ├── osrusbfx2.vcxproj.Filters │ │ └── step2.c │ ├── step3 │ │ ├── osrusbfx2.inx │ │ ├── osrusbfx2.vcxproj │ │ ├── osrusbfx2.vcxproj.Filters │ │ └── step3.c │ ├── step4 │ │ ├── osrusbfx2.inx │ │ ├── osrusbfx2.vcxproj │ │ ├── osrusbfx2.vcxproj.Filters │ │ └── step4.c │ └── step5 │ │ ├── osrusbfx2.inx │ │ ├── osrusbfx2.vcxproj │ │ ├── osrusbfx2.vcxproj.Filters │ │ └── step5.c │ └── wdf_osrfx2_lab.sln ├── video ├── IndirectDisplay │ ├── IddSampleApp │ │ ├── IddSampleApp.vcxproj │ │ ├── IddSampleApp.vcxproj.filters │ │ └── main.cpp │ ├── IddSampleDriver.sln │ ├── IddSampleDriver │ │ ├── Driver.cpp │ │ ├── Driver.h │ │ ├── IddSampleDriver.inf │ │ ├── IddSampleDriver.rc │ │ ├── IddSampleDriver.vcxproj │ │ ├── IddSampleDriver.vcxproj.filters │ │ └── Trace.h │ └── README.md ├── KMDOD │ ├── KMDOD.sln │ ├── README.md │ ├── Sample │ │ ├── SampleDisplay.vcxproj │ │ ├── SampleDisplay.vcxproj.Filters │ │ └── sampledisplay.inf │ ├── bdd.cxx │ ├── bdd.hxx │ ├── bdd_ddi.cxx │ ├── bdd_dmm.cxx │ ├── bdd_errorlog.hxx │ ├── bdd_util.cxx │ ├── bltfuncs.cxx │ ├── blthw.cxx │ ├── memory.cxx │ └── sampledisplay.rc └── archive │ ├── README.md │ └── pixlib │ ├── PixLib.vcxproj │ ├── PixLib.vcxproj.Filters │ ├── README.md │ ├── pixel.cpp │ ├── pixel.hpp │ ├── pixlib.cpp │ └── pixlib.sln ├── wia ├── ProdScan │ ├── BasicArray.h │ ├── CapMan.cpp │ ├── CapMan.h │ ├── Constants.h │ ├── Events.cpp │ ├── FileConv.cpp │ ├── FileConv.h │ ├── InitProp.cpp │ ├── MiniDrv.cpp │ ├── MiniDrv.h │ ├── ProdScan.def │ ├── ProdScan.inx │ ├── ProdScan.rc │ ├── ProdScan.vcxproj │ ├── ProdScan.vcxproj.Filters │ ├── PropMan.cpp │ ├── PropMan.h │ ├── Res │ │ ├── Barcodes.xml │ │ ├── Micr.xml │ │ ├── PatchCod.xml │ │ ├── Printer.bmp │ │ ├── TestGray.jpg │ │ └── TestRGB.jpg │ ├── ScanJobs.cpp │ ├── Server.cpp │ ├── StiUSD.cpp │ ├── Validate.cpp │ ├── WiaUtil.cpp │ ├── WiaUtil.h │ ├── readme.mht │ ├── resource.h │ └── stdafx.h ├── README.md ├── copywia.cmd ├── inc │ └── WiaCI.h ├── microdrv │ ├── resource.h │ ├── testmcro.cpp │ ├── testmcro.def │ ├── testmcro.h │ ├── testmcro.inx │ ├── testmcro.rc │ ├── testmcro.rcv │ ├── testmcro.vcxproj │ └── testmcro.vcxproj.Filters ├── wia.sln └── wiadriverex │ ├── errhandler │ ├── DLLExports.def │ ├── errhandler.cpp │ ├── errhandler.rc │ ├── errhandler.vcxproj │ ├── errhandler.vcxproj.Filters │ ├── resource.h │ └── stdafx.h │ ├── imgfilter │ ├── DLLExports.def │ ├── gphelper.h │ ├── imagefilter.cpp │ ├── imagefilter.h │ ├── imgfilter.vcxproj │ ├── imgfilter.vcxproj.Filters │ ├── stdafx.h │ ├── wiaitem.cpp │ └── wiaitem.h │ ├── sample.bmp │ ├── segfilter │ ├── DLLExports.def │ ├── segfilter.vcxproj │ ├── segfilter.vcxproj.Filters │ ├── segmentation.cpp │ ├── stdafx.h │ ├── wiaitem.cpp │ └── wiaitem.h │ ├── uiext2 │ ├── DLLExports.def │ ├── resource.h │ ├── stdafx.h │ ├── testdev.ico │ ├── uiext2.cpp │ ├── uiext2.rc │ ├── uiext2.vcxproj │ └── uiext2.vcxproj.Filters │ └── usd │ ├── WiaDevice.h │ ├── WiaDriver.inx │ ├── basicarray.h │ ├── basicstr.h │ ├── feeder.bmp │ ├── film.bmp │ ├── flatbed.bmp │ ├── resource.h │ ├── stdafx.h │ ├── wiacapabilitymanager.cpp │ ├── wiacapabilitymanager.h │ ├── wiadriver.cpp │ ├── wiadriver.h │ ├── wiadriver.rc │ ├── wiadriverex.def │ ├── wiadriverex.vcxproj │ ├── wiadriverex.vcxproj.Filters │ ├── wiahelpers.cpp │ ├── wiahelpers.h │ ├── wiapropertymanager.cpp │ └── wiapropertymanager.h └── wmi ├── wmiacpi ├── README.md ├── acpimof.def ├── acpimof.mof ├── acpimof.rc ├── acpimof.vcxproj ├── acpimof.vcxproj.Filters ├── device.asl ├── wmi-acpi.htm └── wmiacpi.sln └── wmisamp ├── README.md ├── WmiHandler.c ├── WmiSamp.rc ├── WmiSamp.vcxproj ├── WmiSamp.vcxproj.Filters ├── wmisamp.c ├── wmisamp.h ├── wmisamp.inx ├── wmisamp.mof └── wmisamp.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/Build-with-GitHub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/.github/Build-with-GitHub.md -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/ci-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/.github/workflows/ci-pr.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/.gitmodules -------------------------------------------------------------------------------- /Build-AllSamples.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/Build-AllSamples.ps1 -------------------------------------------------------------------------------- /Build-Sample.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/Build-Sample.ps1 -------------------------------------------------------------------------------- /Build-SampleSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/Build-SampleSet.ps1 -------------------------------------------------------------------------------- /Building-Locally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/Building-Locally.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TrEE/Miniport/SampleMiniport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/TrEE/Miniport/SampleMiniport.c -------------------------------------------------------------------------------- /TrEE/Miniport/SampleMiniport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/TrEE/Miniport/SampleMiniport.h -------------------------------------------------------------------------------- /TrEE/Miniport/TestService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/TrEE/Miniport/TestService.c -------------------------------------------------------------------------------- /TrEE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/TrEE/README.md -------------------------------------------------------------------------------- /TrEE/Test/SampleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/TrEE/Test/SampleTest.cpp -------------------------------------------------------------------------------- /TrEE/TrEESample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/TrEE/TrEESample.sln -------------------------------------------------------------------------------- /TrEE/inc/SampleOSService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/TrEE/inc/SampleOSService.h -------------------------------------------------------------------------------- /TrEE/inc/SampleSecureService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/TrEE/inc/SampleSecureService.h -------------------------------------------------------------------------------- /audio/sysvad/A2dpHpDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/A2dpHpDevice.cpp -------------------------------------------------------------------------------- /audio/sysvad/A2dpHpDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/A2dpHpDevice.h -------------------------------------------------------------------------------- /audio/sysvad/APO/Inc/tlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/APO/Inc/tlist.h -------------------------------------------------------------------------------- /audio/sysvad/BthhfpDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/BthhfpDevice.cpp -------------------------------------------------------------------------------- /audio/sysvad/BthhfpDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/BthhfpDevice.h -------------------------------------------------------------------------------- /audio/sysvad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/README.md -------------------------------------------------------------------------------- /audio/sysvad/SysVadShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/SysVadShared.h -------------------------------------------------------------------------------- /audio/sysvad/ToneGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/ToneGenerator.cpp -------------------------------------------------------------------------------- /audio/sysvad/ToneGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/ToneGenerator.h -------------------------------------------------------------------------------- /audio/sysvad/UnittestData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/UnittestData.h -------------------------------------------------------------------------------- /audio/sysvad/UsbHsDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/UsbHsDevice.cpp -------------------------------------------------------------------------------- /audio/sysvad/UsbHsDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/UsbHsDevice.h -------------------------------------------------------------------------------- /audio/sysvad/adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/adapter.cpp -------------------------------------------------------------------------------- /audio/sysvad/basetopo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/basetopo.cpp -------------------------------------------------------------------------------- /audio/sysvad/basetopo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/basetopo.h -------------------------------------------------------------------------------- /audio/sysvad/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/common.cpp -------------------------------------------------------------------------------- /audio/sysvad/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/common.h -------------------------------------------------------------------------------- /audio/sysvad/hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/hw.cpp -------------------------------------------------------------------------------- /audio/sysvad/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/hw.h -------------------------------------------------------------------------------- /audio/sysvad/kshelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/kshelper.cpp -------------------------------------------------------------------------------- /audio/sysvad/kshelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/kshelper.h -------------------------------------------------------------------------------- /audio/sysvad/savedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/savedata.cpp -------------------------------------------------------------------------------- /audio/sysvad/savedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/savedata.h -------------------------------------------------------------------------------- /audio/sysvad/sysvad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/sysvad.h -------------------------------------------------------------------------------- /audio/sysvad/sysvad.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/sysvad/sysvad.sln -------------------------------------------------------------------------------- /audio/tests/KSPosTst/PreComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/audio/tests/KSPosTst/PreComp.h -------------------------------------------------------------------------------- /avstream/avscamera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avscamera/README.md -------------------------------------------------------------------------------- /avstream/avscamera/sys/Dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avscamera/sys/Dbg.h -------------------------------------------------------------------------------- /avstream/avscamera/sys/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avscamera/sys/Mutex.h -------------------------------------------------------------------------------- /avstream/avscamera/sys/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avscamera/sys/Ref.h -------------------------------------------------------------------------------- /avstream/avscamera/sys/Roi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avscamera/sys/Roi.cpp -------------------------------------------------------------------------------- /avstream/avscamera/sys/Roi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avscamera/sys/Roi.h -------------------------------------------------------------------------------- /avstream/avscamera/sys/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avscamera/sys/Timer.h -------------------------------------------------------------------------------- /avstream/avscamera/sys/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avscamera/sys/Util.h -------------------------------------------------------------------------------- /avstream/avscamera/sys/hwsim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avscamera/sys/hwsim.h -------------------------------------------------------------------------------- /avstream/avshws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/README.md -------------------------------------------------------------------------------- /avstream/avshws/avshws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/avshws.h -------------------------------------------------------------------------------- /avstream/avshws/avshws.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/avshws.inx -------------------------------------------------------------------------------- /avstream/avshws/avshws.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/avshws.rc -------------------------------------------------------------------------------- /avstream/avshws/avshws.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/avshws.sln -------------------------------------------------------------------------------- /avstream/avshws/avshws.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/avshws.vcxproj -------------------------------------------------------------------------------- /avstream/avshws/capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/capture.cpp -------------------------------------------------------------------------------- /avstream/avshws/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/capture.h -------------------------------------------------------------------------------- /avstream/avshws/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/device.cpp -------------------------------------------------------------------------------- /avstream/avshws/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/device.h -------------------------------------------------------------------------------- /avstream/avshws/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/filter.cpp -------------------------------------------------------------------------------- /avstream/avshws/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/filter.h -------------------------------------------------------------------------------- /avstream/avshws/hwsim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/hwsim.cpp -------------------------------------------------------------------------------- /avstream/avshws/hwsim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/hwsim.h -------------------------------------------------------------------------------- /avstream/avshws/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/image.cpp -------------------------------------------------------------------------------- /avstream/avshws/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/image.h -------------------------------------------------------------------------------- /avstream/avshws/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/makefile -------------------------------------------------------------------------------- /avstream/avshws/purecall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avshws/purecall.c -------------------------------------------------------------------------------- /avstream/avssamp/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/Filter.cpp -------------------------------------------------------------------------------- /avstream/avssamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/README.md -------------------------------------------------------------------------------- /avstream/avssamp/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/audio.cpp -------------------------------------------------------------------------------- /avstream/avssamp/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/audio.h -------------------------------------------------------------------------------- /avstream/avssamp/avssamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/avssamp.cpp -------------------------------------------------------------------------------- /avstream/avssamp/avssamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/avssamp.h -------------------------------------------------------------------------------- /avstream/avssamp/avssamp.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/avssamp.inx -------------------------------------------------------------------------------- /avstream/avssamp/avssamp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/avssamp.rc -------------------------------------------------------------------------------- /avstream/avssamp/avssamp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/avssamp.sln -------------------------------------------------------------------------------- /avstream/avssamp/capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/capture.cpp -------------------------------------------------------------------------------- /avstream/avssamp/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/capture.h -------------------------------------------------------------------------------- /avstream/avssamp/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/filter.h -------------------------------------------------------------------------------- /avstream/avssamp/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/image.cpp -------------------------------------------------------------------------------- /avstream/avssamp/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/image.h -------------------------------------------------------------------------------- /avstream/avssamp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/makefile -------------------------------------------------------------------------------- /avstream/avssamp/purecall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/purecall.c -------------------------------------------------------------------------------- /avstream/avssamp/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/video.cpp -------------------------------------------------------------------------------- /avstream/avssamp/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/video.h -------------------------------------------------------------------------------- /avstream/avssamp/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/wave.cpp -------------------------------------------------------------------------------- /avstream/avssamp/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/avssamp/wave.h -------------------------------------------------------------------------------- /avstream/sampledevicemft/stdafxsrc.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /avstream/samplemft0/Mft0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/samplemft0/Mft0.cpp -------------------------------------------------------------------------------- /avstream/samplemft0/Mft0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/samplemft0/Mft0.h -------------------------------------------------------------------------------- /avstream/samplemft0/Mft0.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/samplemft0/Mft0.rgs -------------------------------------------------------------------------------- /avstream/samplemft0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/samplemft0/README.md -------------------------------------------------------------------------------- /avstream/samplemft0/SampleMft0.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /avstream/samplemft0/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/samplemft0/dllmain.h -------------------------------------------------------------------------------- /avstream/samplemft0/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/samplemft0/resource.h -------------------------------------------------------------------------------- /avstream/samplemft0/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/samplemft0/stdafx.cpp -------------------------------------------------------------------------------- /avstream/samplemft0/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/avstream/samplemft0/stdafx.h -------------------------------------------------------------------------------- /avstream/samplemft0/stdafxsrc.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /bluetooth/bthecho/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/bluetooth/bthecho/README.md -------------------------------------------------------------------------------- /bluetooth/bthecho/bthecho.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/bluetooth/bthecho/bthecho.sln -------------------------------------------------------------------------------- /bluetooth/serialhcibus/Fdo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/bluetooth/serialhcibus/Fdo.c -------------------------------------------------------------------------------- /bluetooth/serialhcibus/Io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/bluetooth/serialhcibus/Io.h -------------------------------------------------------------------------------- /bluetooth/serialhcibus/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/bluetooth/serialhcibus/io.c -------------------------------------------------------------------------------- /bluetooth/serialhcibus/pdo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/bluetooth/serialhcibus/pdo.c -------------------------------------------------------------------------------- /configuration.dsc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/configuration.dsc.yaml -------------------------------------------------------------------------------- /configuration_vsonly.dsc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/configuration_vsonly.dsc.yaml -------------------------------------------------------------------------------- /exclusions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/exclusions.csv -------------------------------------------------------------------------------- /filesys/cdfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/README.md -------------------------------------------------------------------------------- /filesys/cdfs/allocsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/allocsup.c -------------------------------------------------------------------------------- /filesys/cdfs/cachesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/cachesup.c -------------------------------------------------------------------------------- /filesys/cdfs/cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/cd.h -------------------------------------------------------------------------------- /filesys/cdfs/cddata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/cddata.c -------------------------------------------------------------------------------- /filesys/cdfs/cddata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/cddata.h -------------------------------------------------------------------------------- /filesys/cdfs/cdfs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/cdfs.rc -------------------------------------------------------------------------------- /filesys/cdfs/cdfs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/cdfs.sln -------------------------------------------------------------------------------- /filesys/cdfs/cdfs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/cdfs.vcxproj -------------------------------------------------------------------------------- /filesys/cdfs/cdinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/cdinit.c -------------------------------------------------------------------------------- /filesys/cdfs/cdprocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/cdprocs.h -------------------------------------------------------------------------------- /filesys/cdfs/cdprocssrc.c: -------------------------------------------------------------------------------- 1 | #include "cdprocs.h" -------------------------------------------------------------------------------- /filesys/cdfs/cdstruc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/cdstruc.h -------------------------------------------------------------------------------- /filesys/cdfs/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/cleanup.c -------------------------------------------------------------------------------- /filesys/cdfs/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/close.c -------------------------------------------------------------------------------- /filesys/cdfs/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/create.c -------------------------------------------------------------------------------- /filesys/cdfs/devctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/devctrl.c -------------------------------------------------------------------------------- /filesys/cdfs/deviosup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/deviosup.c -------------------------------------------------------------------------------- /filesys/cdfs/dirctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/dirctrl.c -------------------------------------------------------------------------------- /filesys/cdfs/dirsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/dirsup.c -------------------------------------------------------------------------------- /filesys/cdfs/fieldoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/fieldoff.c -------------------------------------------------------------------------------- /filesys/cdfs/fileinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/fileinfo.c -------------------------------------------------------------------------------- /filesys/cdfs/filobsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/filobsup.c -------------------------------------------------------------------------------- /filesys/cdfs/fsctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/fsctrl.c -------------------------------------------------------------------------------- /filesys/cdfs/fspdisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/fspdisp.c -------------------------------------------------------------------------------- /filesys/cdfs/lockctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/lockctrl.c -------------------------------------------------------------------------------- /filesys/cdfs/namesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/namesup.c -------------------------------------------------------------------------------- /filesys/cdfs/nodetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/nodetype.h -------------------------------------------------------------------------------- /filesys/cdfs/pathsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/pathsup.c -------------------------------------------------------------------------------- /filesys/cdfs/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/pnp.c -------------------------------------------------------------------------------- /filesys/cdfs/prefxsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/prefxsup.c -------------------------------------------------------------------------------- /filesys/cdfs/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/read.c -------------------------------------------------------------------------------- /filesys/cdfs/resrcsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/resrcsup.c -------------------------------------------------------------------------------- /filesys/cdfs/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/shutdown.c -------------------------------------------------------------------------------- /filesys/cdfs/strucsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/strucsup.c -------------------------------------------------------------------------------- /filesys/cdfs/verfysup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/verfysup.c -------------------------------------------------------------------------------- /filesys/cdfs/volinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/volinfo.c -------------------------------------------------------------------------------- /filesys/cdfs/workque.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/workque.c -------------------------------------------------------------------------------- /filesys/cdfs/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/cdfs/write.c -------------------------------------------------------------------------------- /filesys/fastfat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/README.md -------------------------------------------------------------------------------- /filesys/fastfat/acchksup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/acchksup.c -------------------------------------------------------------------------------- /filesys/fastfat/allocsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/allocsup.c -------------------------------------------------------------------------------- /filesys/fastfat/cachesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/cachesup.c -------------------------------------------------------------------------------- /filesys/fastfat/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/cleanup.c -------------------------------------------------------------------------------- /filesys/fastfat/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/close.c -------------------------------------------------------------------------------- /filesys/fastfat/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/create.c -------------------------------------------------------------------------------- /filesys/fastfat/devctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/devctrl.c -------------------------------------------------------------------------------- /filesys/fastfat/deviosup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/deviosup.c -------------------------------------------------------------------------------- /filesys/fastfat/dirctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/dirctrl.c -------------------------------------------------------------------------------- /filesys/fastfat/dirsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/dirsup.c -------------------------------------------------------------------------------- /filesys/fastfat/dumpsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/dumpsup.c -------------------------------------------------------------------------------- /filesys/fastfat/ea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/ea.c -------------------------------------------------------------------------------- /filesys/fastfat/easup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/easup.c -------------------------------------------------------------------------------- /filesys/fastfat/fastfat.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/fastfat.rc -------------------------------------------------------------------------------- /filesys/fastfat/fastfat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/fastfat.sln -------------------------------------------------------------------------------- /filesys/fastfat/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/fat.h -------------------------------------------------------------------------------- /filesys/fastfat/fatdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/fatdata.c -------------------------------------------------------------------------------- /filesys/fastfat/fatdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/fatdata.h -------------------------------------------------------------------------------- /filesys/fastfat/fatinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/fatinit.c -------------------------------------------------------------------------------- /filesys/fastfat/fatprocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/fatprocs.h -------------------------------------------------------------------------------- /filesys/fastfat/fatprocssrc.c: -------------------------------------------------------------------------------- 1 | #include "fatprocs.h" -------------------------------------------------------------------------------- /filesys/fastfat/fatstruc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/fatstruc.h -------------------------------------------------------------------------------- /filesys/fastfat/fileinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/fileinfo.c -------------------------------------------------------------------------------- /filesys/fastfat/filobsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/filobsup.c -------------------------------------------------------------------------------- /filesys/fastfat/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/flush.c -------------------------------------------------------------------------------- /filesys/fastfat/fsctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/fsctrl.c -------------------------------------------------------------------------------- /filesys/fastfat/fspdisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/fspdisp.c -------------------------------------------------------------------------------- /filesys/fastfat/lfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/lfn.h -------------------------------------------------------------------------------- /filesys/fastfat/lockctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/lockctrl.c -------------------------------------------------------------------------------- /filesys/fastfat/namesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/namesup.c -------------------------------------------------------------------------------- /filesys/fastfat/nodetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/nodetype.h -------------------------------------------------------------------------------- /filesys/fastfat/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/pnp.c -------------------------------------------------------------------------------- /filesys/fastfat/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/read.c -------------------------------------------------------------------------------- /filesys/fastfat/resrcsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/resrcsup.c -------------------------------------------------------------------------------- /filesys/fastfat/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/shutdown.c -------------------------------------------------------------------------------- /filesys/fastfat/splaysup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/splaysup.c -------------------------------------------------------------------------------- /filesys/fastfat/strucsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/strucsup.c -------------------------------------------------------------------------------- /filesys/fastfat/timesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/timesup.c -------------------------------------------------------------------------------- /filesys/fastfat/verfysup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/verfysup.c -------------------------------------------------------------------------------- /filesys/fastfat/volinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/volinfo.c -------------------------------------------------------------------------------- /filesys/fastfat/workque.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/workque.c -------------------------------------------------------------------------------- /filesys/fastfat/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/fastfat/write.c -------------------------------------------------------------------------------- /filesys/miniFilter/cdo/Cdo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/miniFilter/cdo/Cdo.rc -------------------------------------------------------------------------------- /filesys/miniFilter/cdo/cdo.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/miniFilter/cdo/cdo.inf -------------------------------------------------------------------------------- /filesys/miniFilter/cdo/cdo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/miniFilter/cdo/cdo.sln -------------------------------------------------------------------------------- /filesys/miniFilter/cdo/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/miniFilter/cdo/pch.h -------------------------------------------------------------------------------- /filesys/miniFilter/ctx/ctx.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/miniFilter/ctx/ctx.inf -------------------------------------------------------------------------------- /filesys/miniFilter/ctx/ctx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/miniFilter/ctx/ctx.rc -------------------------------------------------------------------------------- /filesys/miniFilter/ctx/ctx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/miniFilter/ctx/ctx.sln -------------------------------------------------------------------------------- /filesys/miniFilter/ctx/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/filesys/miniFilter/ctx/pch.h -------------------------------------------------------------------------------- /general/DCHU/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/DCHU/README.md -------------------------------------------------------------------------------- /general/PLX9x5x/PLX9x5x.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/PLX9x5x.sln -------------------------------------------------------------------------------- /general/PLX9x5x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/README.md -------------------------------------------------------------------------------- /general/PLX9x5x/sys/Control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/Control.c -------------------------------------------------------------------------------- /general/PLX9x5x/sys/Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/Init.c -------------------------------------------------------------------------------- /general/PLX9x5x/sys/IsrDpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/IsrDpc.c -------------------------------------------------------------------------------- /general/PLX9x5x/sys/Pci9656.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/Pci9656.c -------------------------------------------------------------------------------- /general/PLX9x5x/sys/Pci9656.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/Pci9656.h -------------------------------------------------------------------------------- /general/PLX9x5x/sys/Pci9656.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/Pci9656.rc -------------------------------------------------------------------------------- /general/PLX9x5x/sys/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/Precomp.h -------------------------------------------------------------------------------- /general/PLX9x5x/sys/Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/Private.h -------------------------------------------------------------------------------- /general/PLX9x5x/sys/Public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/Public.h -------------------------------------------------------------------------------- /general/PLX9x5x/sys/Read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/Read.c -------------------------------------------------------------------------------- /general/PLX9x5x/sys/Reg9656.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/Reg9656.h -------------------------------------------------------------------------------- /general/PLX9x5x/sys/Write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/Write.c -------------------------------------------------------------------------------- /general/PLX9x5x/sys/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /general/PLX9x5x/sys/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/sys/trace.h -------------------------------------------------------------------------------- /general/PLX9x5x/test/plx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/test/plx.cpp -------------------------------------------------------------------------------- /general/PLX9x5x/test/plx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/test/plx.hpp -------------------------------------------------------------------------------- /general/PLX9x5x/test/test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/PLX9x5x/test/test.cmd -------------------------------------------------------------------------------- /general/cancel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/cancel/README.md -------------------------------------------------------------------------------- /general/cancel/cancel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/cancel/cancel.sln -------------------------------------------------------------------------------- /general/cancel/exe/install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/cancel/exe/install.c -------------------------------------------------------------------------------- /general/cancel/exe/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/cancel/exe/testapp.c -------------------------------------------------------------------------------- /general/cancel/exe/testapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/cancel/exe/testapp.h -------------------------------------------------------------------------------- /general/cancel/sys/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/cancel/sys/cancel.c -------------------------------------------------------------------------------- /general/cancel/sys/cancel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/cancel/sys/cancel.h -------------------------------------------------------------------------------- /general/cancel/sys/cancel.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/cancel/sys/cancel.rc -------------------------------------------------------------------------------- /general/echo/kmdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/echo/kmdf/README.md -------------------------------------------------------------------------------- /general/echo/kmdf/exe/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/echo/kmdf/exe/public.h -------------------------------------------------------------------------------- /general/echo/kmdf/kmdfecho.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/echo/kmdf/kmdfecho.sln -------------------------------------------------------------------------------- /general/echo/umdf2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/echo/umdf2/README.md -------------------------------------------------------------------------------- /general/event/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/event/README.md -------------------------------------------------------------------------------- /general/event/eventsample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/event/eventsample.sln -------------------------------------------------------------------------------- /general/event/exe/eventtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/event/exe/eventtest.c -------------------------------------------------------------------------------- /general/event/exe/install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/event/exe/install.c -------------------------------------------------------------------------------- /general/event/wdm/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/event/wdm/event.c -------------------------------------------------------------------------------- /general/event/wdm/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/event/wdm/event.h -------------------------------------------------------------------------------- /general/event/wdm/event.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/event/wdm/event.rc -------------------------------------------------------------------------------- /general/event/wdm/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/event/wdm/public.h -------------------------------------------------------------------------------- /general/ioctl/kmdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/ioctl/kmdf/README.md -------------------------------------------------------------------------------- /general/ioctl/kmdf/ioctl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/ioctl/kmdf/ioctl.sln -------------------------------------------------------------------------------- /general/ioctl/kmdf/sys/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/ioctl/kmdf/sys/trace.h -------------------------------------------------------------------------------- /general/ioctl/wdm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/ioctl/wdm/README.md -------------------------------------------------------------------------------- /general/ioctl/wdm/ioctl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/ioctl/wdm/ioctl.sln -------------------------------------------------------------------------------- /general/ioctl/wdm/sys/sioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/ioctl/wdm/sys/sioctl.c -------------------------------------------------------------------------------- /general/ioctl/wdm/sys/sioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/ioctl/wdm/sys/sioctl.h -------------------------------------------------------------------------------- /general/obcallback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/obcallback/README.md -------------------------------------------------------------------------------- /general/obcallback/control/pchsrc.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /general/obcallback/driver/pchsrc.c: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /general/pcidrv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/README.md -------------------------------------------------------------------------------- /general/pcidrv/kmdf/HW/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /general/pcidrv/kmdf/PCIDRV.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/kmdf/PCIDRV.C -------------------------------------------------------------------------------- /general/pcidrv/kmdf/PCIDRV.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/kmdf/PCIDRV.H -------------------------------------------------------------------------------- /general/pcidrv/kmdf/PCIDRV.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/kmdf/PCIDRV.RC -------------------------------------------------------------------------------- /general/pcidrv/kmdf/PCIDRV.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/kmdf/PCIDRV.mof -------------------------------------------------------------------------------- /general/pcidrv/kmdf/genpci.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/kmdf/genpci.inx -------------------------------------------------------------------------------- /general/pcidrv/kmdf/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/kmdf/public.h -------------------------------------------------------------------------------- /general/pcidrv/kmdf/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/kmdf/trace.h -------------------------------------------------------------------------------- /general/pcidrv/kmdf/wmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/kmdf/wmi.c -------------------------------------------------------------------------------- /general/pcidrv/pcidrv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/pcidrv.sln -------------------------------------------------------------------------------- /general/pcidrv/test/myping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/test/myping.c -------------------------------------------------------------------------------- /general/pcidrv/test/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/test/resource.h -------------------------------------------------------------------------------- /general/pcidrv/test/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/test/testapp.c -------------------------------------------------------------------------------- /general/pcidrv/test/testapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/test/testapp.h -------------------------------------------------------------------------------- /general/pcidrv/test/testapp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/pcidrv/test/testapp.rc -------------------------------------------------------------------------------- /general/perfcounters/kcs/kcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/perfcounters/kcs/kcs.c -------------------------------------------------------------------------------- /general/perfcounters/kcs/kcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/general/perfcounters/kcs/kcs.h -------------------------------------------------------------------------------- /general/perfcounters/kcs/kcs.rc: -------------------------------------------------------------------------------- 1 | #include // Generated by running ctrpp.exe kcs.man 2 | -------------------------------------------------------------------------------- /general/toaster/toastpkg/toastapp/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /general/toaster/toastpkg/toastco/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /general/toaster/toastpkg/toastva/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /gnss/GnssUmdfSampleDriver.wprp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/GnssUmdfSampleDriver.wprp -------------------------------------------------------------------------------- /gnss/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/ReadMe.md -------------------------------------------------------------------------------- /gnss/gnssUmdf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf.sln -------------------------------------------------------------------------------- /gnss/gnssUmdf/Defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/Defaults.h -------------------------------------------------------------------------------- /gnss/gnssUmdf/Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/Device.cpp -------------------------------------------------------------------------------- /gnss/gnssUmdf/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/Device.h -------------------------------------------------------------------------------- /gnss/gnssUmdf/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/Driver.cpp -------------------------------------------------------------------------------- /gnss/gnssUmdf/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/Driver.h -------------------------------------------------------------------------------- /gnss/gnssUmdf/FixHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/FixHandler.cpp -------------------------------------------------------------------------------- /gnss/gnssUmdf/FixHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/FixHandler.h -------------------------------------------------------------------------------- /gnss/gnssUmdf/FixSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/FixSession.cpp -------------------------------------------------------------------------------- /gnss/gnssUmdf/FixSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/FixSession.h -------------------------------------------------------------------------------- /gnss/gnssUmdf/Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/Queue.cpp -------------------------------------------------------------------------------- /gnss/gnssUmdf/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/Queue.h -------------------------------------------------------------------------------- /gnss/gnssUmdf/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/Trace.h -------------------------------------------------------------------------------- /gnss/gnssUmdf/gnssUmdf.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/gnssUmdf.inf -------------------------------------------------------------------------------- /gnss/gnssUmdf/gnssUmdf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/gnssUmdf.vcxproj -------------------------------------------------------------------------------- /gnss/gnssUmdf/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gnss/gnssUmdf/precomp.h -------------------------------------------------------------------------------- /gpio/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gpio/samples/README.md -------------------------------------------------------------------------------- /gpio/samples/sim.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gpio/samples/sim.sln -------------------------------------------------------------------------------- /gpio/samples/simgpio/simgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/gpio/samples/simgpio/simgpio.c -------------------------------------------------------------------------------- /hid/firefly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/README.md -------------------------------------------------------------------------------- /hid/firefly/app/firefly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/app/firefly.cpp -------------------------------------------------------------------------------- /hid/firefly/driver/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/driver/device.c -------------------------------------------------------------------------------- /hid/firefly/driver/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/driver/device.h -------------------------------------------------------------------------------- /hid/firefly/driver/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/driver/driver.c -------------------------------------------------------------------------------- /hid/firefly/driver/firefly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/driver/firefly.h -------------------------------------------------------------------------------- /hid/firefly/driver/firefly.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/driver/firefly.inx -------------------------------------------------------------------------------- /hid/firefly/driver/firefly.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/driver/firefly.mof -------------------------------------------------------------------------------- /hid/firefly/driver/firefly.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/driver/firefly.rc -------------------------------------------------------------------------------- /hid/firefly/driver/magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/driver/magic.h -------------------------------------------------------------------------------- /hid/firefly/driver/vfeature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/driver/vfeature.c -------------------------------------------------------------------------------- /hid/firefly/driver/vfeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/driver/vfeature.h -------------------------------------------------------------------------------- /hid/firefly/driver/wmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/driver/wmi.c -------------------------------------------------------------------------------- /hid/firefly/driver/wmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/driver/wmi.h -------------------------------------------------------------------------------- /hid/firefly/firefly.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/firefly.sln -------------------------------------------------------------------------------- /hid/firefly/lib/luminous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/lib/luminous.cpp -------------------------------------------------------------------------------- /hid/firefly/sauron/Sauron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/sauron/Sauron.cpp -------------------------------------------------------------------------------- /hid/firefly/sauron/Sauron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/sauron/Sauron.h -------------------------------------------------------------------------------- /hid/firefly/sauron/Sauron.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/sauron/Sauron.rgs -------------------------------------------------------------------------------- /hid/firefly/sauron/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/sauron/StdAfx.cpp -------------------------------------------------------------------------------- /hid/firefly/sauron/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/sauron/StdAfx.h -------------------------------------------------------------------------------- /hid/firefly/sauron/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/sauron/effects.h -------------------------------------------------------------------------------- /hid/firefly/sauron/effects.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/sauron/effects.idl -------------------------------------------------------------------------------- /hid/firefly/sauron/iSauron.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/sauron/iSauron.idl -------------------------------------------------------------------------------- /hid/firefly/sauron/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/sauron/resource.h -------------------------------------------------------------------------------- /hid/firefly/sauron/stdafxsrc.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /hid/firefly/shared/luminous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/shared/luminous.h -------------------------------------------------------------------------------- /hid/firefly/shared/project.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/firefly/shared/project.mk -------------------------------------------------------------------------------- /hid/hclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/README.md -------------------------------------------------------------------------------- /hid/hclient/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/buffers.c -------------------------------------------------------------------------------- /hid/hclient/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/buffers.h -------------------------------------------------------------------------------- /hid/hclient/ecdisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/ecdisp.c -------------------------------------------------------------------------------- /hid/hclient/ecdisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/ecdisp.h -------------------------------------------------------------------------------- /hid/hclient/hclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/hclient.c -------------------------------------------------------------------------------- /hid/hclient/hclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/hclient.h -------------------------------------------------------------------------------- /hid/hclient/hclient.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/hclient.mk -------------------------------------------------------------------------------- /hid/hclient/hclient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/hclient.rc -------------------------------------------------------------------------------- /hid/hclient/hclient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/hclient.sln -------------------------------------------------------------------------------- /hid/hclient/hclient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/hclient.vcxproj -------------------------------------------------------------------------------- /hid/hclient/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/hid.h -------------------------------------------------------------------------------- /hid/hclient/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/list.h -------------------------------------------------------------------------------- /hid/hclient/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/pnp.c -------------------------------------------------------------------------------- /hid/hclient/report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/report.c -------------------------------------------------------------------------------- /hid/hclient/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/resource.h -------------------------------------------------------------------------------- /hid/hclient/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/strings.c -------------------------------------------------------------------------------- /hid/hclient/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hclient/strings.h -------------------------------------------------------------------------------- /hid/hidusbfx2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hidusbfx2/README.md -------------------------------------------------------------------------------- /hid/hidusbfx2/hidusbfx2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hidusbfx2/hidusbfx2.sln -------------------------------------------------------------------------------- /hid/hidusbfx2/sys/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hidusbfx2/sys/driver.c -------------------------------------------------------------------------------- /hid/hidusbfx2/sys/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hidusbfx2/sys/hid.c -------------------------------------------------------------------------------- /hid/hidusbfx2/sys/hidusbfx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hidusbfx2/sys/hidusbfx2.h -------------------------------------------------------------------------------- /hid/hidusbfx2/sys/hidusbfx2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hidusbfx2/sys/hidusbfx2.rc -------------------------------------------------------------------------------- /hid/hidusbfx2/sys/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hidusbfx2/sys/trace.h -------------------------------------------------------------------------------- /hid/hidusbfx2/sys/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/hidusbfx2/sys/usb.c -------------------------------------------------------------------------------- /hid/vhidmini2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/vhidmini2/README.md -------------------------------------------------------------------------------- /hid/vhidmini2/app/testvhid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/vhidmini2/app/testvhid.c -------------------------------------------------------------------------------- /hid/vhidmini2/app/testvhid.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/vhidmini2/app/testvhid.rc -------------------------------------------------------------------------------- /hid/vhidmini2/inc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/vhidmini2/inc/common.h -------------------------------------------------------------------------------- /hid/vhidmini2/vhidmini2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/hid/vhidmini2/vhidmini2.sln -------------------------------------------------------------------------------- /input/kbfiltr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/kbfiltr/README.md -------------------------------------------------------------------------------- /input/kbfiltr/exe/kbftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/kbfiltr/exe/kbftest.c -------------------------------------------------------------------------------- /input/kbfiltr/kbfiltr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/kbfiltr/kbfiltr.sln -------------------------------------------------------------------------------- /input/kbfiltr/sys/kbfiltr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/kbfiltr/sys/kbfiltr.c -------------------------------------------------------------------------------- /input/kbfiltr/sys/kbfiltr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/kbfiltr/sys/kbfiltr.h -------------------------------------------------------------------------------- /input/kbfiltr/sys/kbfiltr.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/kbfiltr/sys/kbfiltr.inx -------------------------------------------------------------------------------- /input/kbfiltr/sys/kbfiltr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/kbfiltr/sys/kbfiltr.rc -------------------------------------------------------------------------------- /input/kbfiltr/sys/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/kbfiltr/sys/public.h -------------------------------------------------------------------------------- /input/kbfiltr/sys/rawpdo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/kbfiltr/sys/rawpdo.c -------------------------------------------------------------------------------- /input/layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/layout/README.md -------------------------------------------------------------------------------- /input/layout/all_kbds/kbdfr/kbdfr.def: -------------------------------------------------------------------------------- 1 | LIBRARY KBDFR 2 | 3 | EXPORTS 4 | KbdLayerDescriptor @1 5 | -------------------------------------------------------------------------------- /input/layout/all_kbds/kbdgr/kbdgr.def: -------------------------------------------------------------------------------- 1 | LIBRARY KBDGR 2 | 3 | EXPORTS 4 | KbdLayerDescriptor @1 5 | -------------------------------------------------------------------------------- /input/layout/kbd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/layout/kbd.sln -------------------------------------------------------------------------------- /input/layout/kbdus/kbdus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/layout/kbdus/kbdus.c -------------------------------------------------------------------------------- /input/layout/kbdus/kbdus.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/layout/kbdus/kbdus.def -------------------------------------------------------------------------------- /input/layout/kbdus/kbdus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/layout/kbdus/kbdus.h -------------------------------------------------------------------------------- /input/layout/kbdus/kbdus.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/layout/kbdus/kbdus.rc -------------------------------------------------------------------------------- /input/moufiltr/Moufiltr.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/moufiltr/Moufiltr.htm -------------------------------------------------------------------------------- /input/moufiltr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/moufiltr/README.md -------------------------------------------------------------------------------- /input/moufiltr/moufiltr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/moufiltr/moufiltr.c -------------------------------------------------------------------------------- /input/moufiltr/moufiltr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/moufiltr/moufiltr.h -------------------------------------------------------------------------------- /input/moufiltr/moufiltr.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/moufiltr/moufiltr.inx -------------------------------------------------------------------------------- /input/moufiltr/moufiltr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/moufiltr/moufiltr.rc -------------------------------------------------------------------------------- /input/moufiltr/moufiltr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/input/moufiltr/moufiltr.sln -------------------------------------------------------------------------------- /network/ndis/extension/base/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /network/ndis/extension/samples/forward/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /network/ndis/extension/samples/forward/uninstall.cmd: -------------------------------------------------------------------------------- 1 | powershell .\removeRoute.ps1 2 | 3 | netcfg -u ms_forwardext -------------------------------------------------------------------------------- /network/ndis/extension/samples/passthrough/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /network/ndis/extension/samples/passthrough/uninstall.cmd: -------------------------------------------------------------------------------- 1 | netcfg -u ms_passthroughext -------------------------------------------------------------------------------- /network/ndis/filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/filter/README.md -------------------------------------------------------------------------------- /network/ndis/filter/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/filter/device.c -------------------------------------------------------------------------------- /network/ndis/filter/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/filter/filter.c -------------------------------------------------------------------------------- /network/ndis/filter/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/filter/filter.h -------------------------------------------------------------------------------- /network/ndis/filter/filter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/filter/filter.rc -------------------------------------------------------------------------------- /network/ndis/filter/filter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/filter/filter.sln -------------------------------------------------------------------------------- /network/ndis/filter/flt_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/filter/flt_dbg.c -------------------------------------------------------------------------------- /network/ndis/filter/flt_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/filter/flt_dbg.h -------------------------------------------------------------------------------- /network/ndis/filter/netlwf.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/filter/netlwf.inf -------------------------------------------------------------------------------- /network/ndis/filter/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/filter/precomp.h -------------------------------------------------------------------------------- /network/ndis/filter/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /network/ndis/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/mux/README.md -------------------------------------------------------------------------------- /network/ndis/mux/driver/60/novlan/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /network/ndis/mux/driver/60/vlan/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /network/ndis/mux/mux.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/mux/mux.sln -------------------------------------------------------------------------------- /network/ndis/ndisprot/6x/sys/60/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /network/ndis/ndisprot/6x/sys/630/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /network/ndis/ndisprot_kmdf/60/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /network/ndis/ndisprot_kmdf/notifyob/commonsrc.cpp: -------------------------------------------------------------------------------- 1 | #include "common.hpp" -------------------------------------------------------------------------------- /network/ndis/netvmini/6x/qos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/netvmini/6x/qos.c -------------------------------------------------------------------------------- /network/ndis/netvmini/6x/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/netvmini/6x/qos.h -------------------------------------------------------------------------------- /network/ndis/netvmini/6x/vmq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/netvmini/6x/vmq.c -------------------------------------------------------------------------------- /network/ndis/netvmini/6x/vmq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/ndis/netvmini/6x/vmq.h -------------------------------------------------------------------------------- /network/radio/RadioManagerSample/cpp/precompsrc.cpp: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /network/wlan/WDI/.gitignore: -------------------------------------------------------------------------------- 1 | *Debug/ 2 | *Release/ 3 | -------------------------------------------------------------------------------- /network/wlan/WDI/COMMON/DFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/COMMON/DFS.c -------------------------------------------------------------------------------- /network/wlan/WDI/COMMON/DFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/COMMON/DFS.h -------------------------------------------------------------------------------- /network/wlan/WDI/COMMON/Mp_Precomp.h: -------------------------------------------------------------------------------- 1 | #include "Precomp.h" 2 | 3 | -------------------------------------------------------------------------------- /network/wlan/WDI/COMMON/P2P.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/COMMON/P2P.c -------------------------------------------------------------------------------- /network/wlan/WDI/COMMON/P2P.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/COMMON/P2P.h -------------------------------------------------------------------------------- /network/wlan/WDI/COMMON/RC4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/COMMON/RC4.h -------------------------------------------------------------------------------- /network/wlan/WDI/COMMON/WPS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/COMMON/WPS.c -------------------------------------------------------------------------------- /network/wlan/WDI/COMMON/WPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/COMMON/WPS.h -------------------------------------------------------------------------------- /network/wlan/WDI/COMMON/Wapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/COMMON/Wapi.h -------------------------------------------------------------------------------- /network/wlan/WDI/COMMON/Widi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/COMMON/Widi.h -------------------------------------------------------------------------------- /network/wlan/WDI/COMMON/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/COMMON/pool.c -------------------------------------------------------------------------------- /network/wlan/WDI/COMMON/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/COMMON/pool.h -------------------------------------------------------------------------------- /network/wlan/WDI/HAL/DIRS.WlanS: -------------------------------------------------------------------------------- 1 | DIRS=\ 2 | EFUSE \ 3 | HALSOURCE 4 | -------------------------------------------------------------------------------- /network/wlan/WDI/HAL/HAL.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/HAL/HAL.mk -------------------------------------------------------------------------------- /network/wlan/WDI/HAL/HALSOURCE/Mp_Precomp.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /network/wlan/WDI/HAL/HalCam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/HAL/HalCam.h -------------------------------------------------------------------------------- /network/wlan/WDI/HAL/HalDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/HAL/HalDM.h -------------------------------------------------------------------------------- /network/wlan/WDI/HAL/HalFw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/HAL/HalFw.h -------------------------------------------------------------------------------- /network/wlan/WDI/HAL/HalPG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/HAL/HalPG.h -------------------------------------------------------------------------------- /network/wlan/WDI/HAL/HalPhy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/HAL/HalPhy.h -------------------------------------------------------------------------------- /network/wlan/WDI/HAL/HalSIC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/HAL/HalSIC.h -------------------------------------------------------------------------------- /network/wlan/WDI/HAL/HalSdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/HAL/HalSdio.h -------------------------------------------------------------------------------- /network/wlan/WDI/PLATFORM/NDIS6/DIRS.SDIO: -------------------------------------------------------------------------------- 1 | DIRS=\ 2 | SDIO 3 | -------------------------------------------------------------------------------- /network/wlan/WDI/PLATFORM/NdisComm/Mp_Precomp.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /network/wlan/WDI/PLATFORM/WinInf/SDIO/InfSupportFeature.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/wlan/WDI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wlan/WDI/README.md -------------------------------------------------------------------------------- /network/wlan/ihvsampleui/IHVUIInc.idl: -------------------------------------------------------------------------------- 1 | #include "wlanihvui.idl" -------------------------------------------------------------------------------- /network/wsk/echosrv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wsk/echosrv/README.md -------------------------------------------------------------------------------- /network/wsk/echosrv/echosrv.ctl: -------------------------------------------------------------------------------- 1 | 998bdf51-0349-4fbc-870c-d6130a955a5f WskSampleCtlGuid -------------------------------------------------------------------------------- /network/wsk/echosrv/wsksmple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/network/wsk/echosrv/wsksmple.c -------------------------------------------------------------------------------- /nfc/NfcCxSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/nfc/NfcCxSample/README.md -------------------------------------------------------------------------------- /nfp/net/NetNfpProvider.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/nfp/net/NetNfpProvider.htm -------------------------------------------------------------------------------- /nfp/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/nfp/net/README.md -------------------------------------------------------------------------------- /nfp/net/exe/NetNfpControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/nfp/net/exe/NetNfpControl.cpp -------------------------------------------------------------------------------- /nfp/net/exe/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/nfp/net/exe/precomp.h -------------------------------------------------------------------------------- /nfp/net/exe/precompsrc.cpp: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /nfp/net/inc/NetNfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/nfp/net/inc/NetNfp.h -------------------------------------------------------------------------------- /nfp/net/netnfp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/nfp/net/netnfp.sln -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/packages.config -------------------------------------------------------------------------------- /pofx/PEP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/README.md -------------------------------------------------------------------------------- /pofx/PEP/acpi/acpispecific.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/acpi/acpispecific.c -------------------------------------------------------------------------------- /pofx/PEP/acpi/acpispecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/acpi/acpispecific.h -------------------------------------------------------------------------------- /pofx/PEP/acpi/pchsrc.c: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /pofx/PEP/acpi/sampleacpipep.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/acpi/sampleacpipep.rc -------------------------------------------------------------------------------- /pofx/PEP/acpi/testdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/acpi/testdevice.c -------------------------------------------------------------------------------- /pofx/PEP/common/acpinotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/common/acpinotify.c -------------------------------------------------------------------------------- /pofx/PEP/common/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/common/driver.c -------------------------------------------------------------------------------- /pofx/PEP/common/pchsrc.c: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /pofx/PEP/common/pep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/common/pep.c -------------------------------------------------------------------------------- /pofx/PEP/common/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/common/util.c -------------------------------------------------------------------------------- /pofx/PEP/common/work.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/common/work.c -------------------------------------------------------------------------------- /pofx/PEP/inc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/inc/common.h -------------------------------------------------------------------------------- /pofx/PEP/inc/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/inc/pch.h -------------------------------------------------------------------------------- /pofx/PEP/inc/pep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/inc/pep.h -------------------------------------------------------------------------------- /pofx/PEP/inc/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/inc/trace.h -------------------------------------------------------------------------------- /pofx/PEP/pepsamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/PEP/pepsamples.sln -------------------------------------------------------------------------------- /pofx/UMDF2/App/PowerFxApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/UMDF2/App/PowerFxApp.cpp -------------------------------------------------------------------------------- /pofx/UMDF2/App/UserInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/UMDF2/App/UserInput.cpp -------------------------------------------------------------------------------- /pofx/UMDF2/App/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/UMDF2/App/include.h -------------------------------------------------------------------------------- /pofx/UMDF2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/UMDF2/README.md -------------------------------------------------------------------------------- /pofx/UMDF2/inc/AppInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/UMDF2/inc/AppInterface.h -------------------------------------------------------------------------------- /pofx/UMDF2/pofx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/UMDF2/pofx.sln -------------------------------------------------------------------------------- /pofx/WDF/App/PowerFxApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/WDF/App/PowerFxApp.cpp -------------------------------------------------------------------------------- /pofx/WDF/App/UserInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/WDF/App/UserInput.cpp -------------------------------------------------------------------------------- /pofx/WDF/App/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/WDF/App/include.h -------------------------------------------------------------------------------- /pofx/WDF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/WDF/README.md -------------------------------------------------------------------------------- /pofx/WDF/inc/AppInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/WDF/inc/AppInterface.h -------------------------------------------------------------------------------- /pofx/WDF/pofx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/pofx/WDF/pofx.sln -------------------------------------------------------------------------------- /pos/drivers/MagneticStripeReader/Device.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | EVT_WDF_DRIVER_DEVICE_ADD EvtDriverDeviceAdd; 4 | -------------------------------------------------------------------------------- /pos/drivers/MagneticStripeReader/pchsrc.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /pos/drivers/barcodescanner/Device.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | EVT_WDF_DRIVER_DEVICE_ADD EvtDriverDeviceAdd; 4 | -------------------------------------------------------------------------------- /pos/drivers/barcodescanner/PosEvents.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | EVT_POS_CX_DEVICE_OWNERSHIP_CHANGE EvtDeviceOwnershipChange; -------------------------------------------------------------------------------- /pos/drivers/barcodescanner/pchsrc.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /powerlimit/plclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/powerlimit/plclient/README.md -------------------------------------------------------------------------------- /powerlimit/plclient/plclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/powerlimit/plclient/plclient.c -------------------------------------------------------------------------------- /powerlimit/plclient/plclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/powerlimit/plclient/plclient.h -------------------------------------------------------------------------------- /powerlimit/plclient/wdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/powerlimit/plclient/wdf.c -------------------------------------------------------------------------------- /powerlimit/plpolicy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/powerlimit/plpolicy/README.md -------------------------------------------------------------------------------- /powerlimit/plpolicy/plpolicy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/powerlimit/plpolicy/plpolicy.c -------------------------------------------------------------------------------- /powerlimit/plpolicy/plpolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/powerlimit/plpolicy/plpolicy.h -------------------------------------------------------------------------------- /powerlimit/plpolicy/wdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/powerlimit/plpolicy/wdf.c -------------------------------------------------------------------------------- /print/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/print/.gitignore -------------------------------------------------------------------------------- /print/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/print/README.md -------------------------------------------------------------------------------- /prm/PrmFunc/prmfuncsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/prm/PrmFunc/prmfuncsample.c -------------------------------------------------------------------------------- /prm/PrmFunc/prmfuncsample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/prm/PrmFunc/prmfuncsample.h -------------------------------------------------------------------------------- /prm/PrmFunc/prmfuncsample.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/prm/PrmFunc/prmfuncsample.inf -------------------------------------------------------------------------------- /prm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/prm/README.md -------------------------------------------------------------------------------- /prm/prmsample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/prm/prmsample.sln -------------------------------------------------------------------------------- /sd/miniport/sdhc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sd/miniport/sdhc/README.md -------------------------------------------------------------------------------- /sd/miniport/sdhc/sdhc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sd/miniport/sdhc/sdhc.c -------------------------------------------------------------------------------- /sd/miniport/sdhc/sdhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sd/miniport/sdhc/sdhc.h -------------------------------------------------------------------------------- /sd/miniport/sdhc/sdhc.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sd/miniport/sdhc/sdhc.inx -------------------------------------------------------------------------------- /sd/miniport/sdhc/sdhc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sd/miniport/sdhc/sdhc.rc -------------------------------------------------------------------------------- /sd/miniport/sdhc/sdhc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sd/miniport/sdhc/sdhc.sln -------------------------------------------------------------------------------- /security/elam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/security/elam/README.md -------------------------------------------------------------------------------- /security/elam/elam.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/security/elam/elam.sln -------------------------------------------------------------------------------- /security/elam/elamsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/security/elam/elamsample.c -------------------------------------------------------------------------------- /security/elam/elamsample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/security/elam/elamsample.h -------------------------------------------------------------------------------- /security/elam/elamsample.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/security/elam/elamsample.rc -------------------------------------------------------------------------------- /sensors/ADXL345Acc/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/ADXL345Acc/Device.h -------------------------------------------------------------------------------- /sensors/ADXL345Acc/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/ADXL345Acc/Driver.h -------------------------------------------------------------------------------- /sensors/ADXL345Acc/adxl345.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/ADXL345Acc/adxl345.h -------------------------------------------------------------------------------- /sensors/ADXL345Acc/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/ADXL345Acc/client.cpp -------------------------------------------------------------------------------- /sensors/ADXL345Acc/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/ADXL345Acc/device.cpp -------------------------------------------------------------------------------- /sensors/ADXL345Acc/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/ADXL345Acc/driver.cpp -------------------------------------------------------------------------------- /sensors/ADXL345Acc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/ADXL345Acc/readme.md -------------------------------------------------------------------------------- /sensors/Activity/Activity.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Activity/Activity.def -------------------------------------------------------------------------------- /sensors/Activity/Activity.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Activity/Activity.inx -------------------------------------------------------------------------------- /sensors/Activity/Activity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Activity/Activity.sln -------------------------------------------------------------------------------- /sensors/Activity/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Activity/Device.h -------------------------------------------------------------------------------- /sensors/Activity/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Activity/Driver.h -------------------------------------------------------------------------------- /sensors/Activity/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Activity/client.cpp -------------------------------------------------------------------------------- /sensors/Activity/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Activity/device.cpp -------------------------------------------------------------------------------- /sensors/Activity/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Activity/driver.cpp -------------------------------------------------------------------------------- /sensors/Activity/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Activity/readme.md -------------------------------------------------------------------------------- /sensors/CustomSensors/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/CustomSensors/Device.h -------------------------------------------------------------------------------- /sensors/CustomSensors/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/CustomSensors/Driver.h -------------------------------------------------------------------------------- /sensors/Fusion/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Fusion/Device.h -------------------------------------------------------------------------------- /sensors/Fusion/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Fusion/Driver.h -------------------------------------------------------------------------------- /sensors/Fusion/FusionSensor.ctl: -------------------------------------------------------------------------------- 1 | 0E08A3BA,F045,44EE,B00C,292C91C5F95A FusionSensorTraceGuid 2 | -------------------------------------------------------------------------------- /sensors/Fusion/SensorsTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Fusion/SensorsTrace.h -------------------------------------------------------------------------------- /sensors/Fusion/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Fusion/client.cpp -------------------------------------------------------------------------------- /sensors/Fusion/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Fusion/device.cpp -------------------------------------------------------------------------------- /sensors/Fusion/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Fusion/driver.cpp -------------------------------------------------------------------------------- /sensors/Fusion/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Fusion/readme.md -------------------------------------------------------------------------------- /sensors/Pedometer/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Pedometer/Device.h -------------------------------------------------------------------------------- /sensors/Pedometer/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Pedometer/Driver.h -------------------------------------------------------------------------------- /sensors/Pedometer/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Pedometer/client.cpp -------------------------------------------------------------------------------- /sensors/Pedometer/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Pedometer/device.cpp -------------------------------------------------------------------------------- /sensors/Pedometer/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Pedometer/driver.cpp -------------------------------------------------------------------------------- /sensors/Pedometer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/sensors/Pedometer/readme.md -------------------------------------------------------------------------------- /serial/VirtualSerial2/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/VirtualSerial2/device.c -------------------------------------------------------------------------------- /serial/VirtualSerial2/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/VirtualSerial2/device.h -------------------------------------------------------------------------------- /serial/VirtualSerial2/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/VirtualSerial2/driver.c -------------------------------------------------------------------------------- /serial/VirtualSerial2/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/VirtualSerial2/driver.h -------------------------------------------------------------------------------- /serial/VirtualSerial2/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/VirtualSerial2/queue.c -------------------------------------------------------------------------------- /serial/VirtualSerial2/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/VirtualSerial2/queue.h -------------------------------------------------------------------------------- /serial/VirtualSerial2/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/VirtualSerial2/serial.h -------------------------------------------------------------------------------- /serial/serenum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serenum/README.md -------------------------------------------------------------------------------- /serial/serenum/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serenum/enum.c -------------------------------------------------------------------------------- /serial/serenum/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serenum/log.c -------------------------------------------------------------------------------- /serial/serenum/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serenum/log.h -------------------------------------------------------------------------------- /serial/serenum/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serenum/pch.h -------------------------------------------------------------------------------- /serial/serenum/pchsrc.c: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /serial/serenum/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serenum/pnp.c -------------------------------------------------------------------------------- /serial/serenum/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serenum/power.c -------------------------------------------------------------------------------- /serial/serenum/serenum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serenum/serenum.c -------------------------------------------------------------------------------- /serial/serenum/serenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serenum/serenum.h -------------------------------------------------------------------------------- /serial/serenum/serenum.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serenum/serenum.rc -------------------------------------------------------------------------------- /serial/serenum/serenum.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serenum/serenum.sln -------------------------------------------------------------------------------- /serial/serenum/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serenum/string.c -------------------------------------------------------------------------------- /serial/serial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/README.md -------------------------------------------------------------------------------- /serial/serial/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/error.c -------------------------------------------------------------------------------- /serial/serial/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/flush.c -------------------------------------------------------------------------------- /serial/serial/immediat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/immediat.c -------------------------------------------------------------------------------- /serial/serial/initunlo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/initunlo.c -------------------------------------------------------------------------------- /serial/serial/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/ioctl.c -------------------------------------------------------------------------------- /serial/serial/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/isr.c -------------------------------------------------------------------------------- /serial/serial/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/log.c -------------------------------------------------------------------------------- /serial/serial/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/log.h -------------------------------------------------------------------------------- /serial/serial/modmflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/modmflow.c -------------------------------------------------------------------------------- /serial/serial/openclos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/openclos.c -------------------------------------------------------------------------------- /serial/serial/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/pnp.c -------------------------------------------------------------------------------- /serial/serial/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/power.c -------------------------------------------------------------------------------- /serial/serial/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/precomp.h -------------------------------------------------------------------------------- /serial/serial/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /serial/serial/purge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/purge.c -------------------------------------------------------------------------------- /serial/serial/qsfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/qsfile.c -------------------------------------------------------------------------------- /serial/serial/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/read.c -------------------------------------------------------------------------------- /serial/serial/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/registry.c -------------------------------------------------------------------------------- /serial/serial/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/serial.h -------------------------------------------------------------------------------- /serial/serial/serial.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/serial.inx -------------------------------------------------------------------------------- /serial/serial/serial.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/serial.rc -------------------------------------------------------------------------------- /serial/serial/serial.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/serial.sln -------------------------------------------------------------------------------- /serial/serial/serialp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/serialp.h -------------------------------------------------------------------------------- /serial/serial/serlog.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/serlog.mc -------------------------------------------------------------------------------- /serial/serial/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/trace.h -------------------------------------------------------------------------------- /serial/serial/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/utils.c -------------------------------------------------------------------------------- /serial/serial/waitmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/waitmask.c -------------------------------------------------------------------------------- /serial/serial/wmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/wmi.c -------------------------------------------------------------------------------- /serial/serial/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/serial/serial/write.c -------------------------------------------------------------------------------- /setup/devcon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/setup/devcon/README.md -------------------------------------------------------------------------------- /setup/devcon/cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/setup/devcon/cmds.cpp -------------------------------------------------------------------------------- /setup/devcon/devcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/setup/devcon/devcon.cpp -------------------------------------------------------------------------------- /setup/devcon/devcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/setup/devcon/devcon.h -------------------------------------------------------------------------------- /setup/devcon/devcon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/setup/devcon/devcon.rc -------------------------------------------------------------------------------- /setup/devcon/devcon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/setup/devcon/devcon.sln -------------------------------------------------------------------------------- /setup/devcon/devcon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/setup/devcon/devcon.vcxproj -------------------------------------------------------------------------------- /setup/devcon/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/setup/devcon/dump.cpp -------------------------------------------------------------------------------- /setup/devcon/msg.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/setup/devcon/msg.mc -------------------------------------------------------------------------------- /setup/devcon/rc_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/setup/devcon/rc_ids.h -------------------------------------------------------------------------------- /simbatt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/simbatt/README.md -------------------------------------------------------------------------------- /simbatt/func/miniclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/simbatt/func/miniclass.c -------------------------------------------------------------------------------- /simbatt/func/simbatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/simbatt/func/simbatt.h -------------------------------------------------------------------------------- /simbatt/func/simbatt.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/simbatt/func/simbatt.inx -------------------------------------------------------------------------------- /simbatt/func/simbatt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/simbatt/func/simbatt.rc -------------------------------------------------------------------------------- /simbatt/func/simbatt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/simbatt/func/simbatt.sln -------------------------------------------------------------------------------- /simbatt/func/simbatt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/simbatt/func/simbatt.vcxproj -------------------------------------------------------------------------------- /simbatt/func/simbattdriverif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/simbatt/func/simbattdriverif.h -------------------------------------------------------------------------------- /simbatt/func/wdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/simbatt/func/wdf.c -------------------------------------------------------------------------------- /smartcrd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/README.md -------------------------------------------------------------------------------- /smartcrd/pscr/Pscr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/Pscr.vcxproj -------------------------------------------------------------------------------- /smartcrd/pscr/pscr.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/pscr.inx -------------------------------------------------------------------------------- /smartcrd/pscr/pscr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/pscr.rc -------------------------------------------------------------------------------- /smartcrd/pscr/pscrcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/pscrcb.c -------------------------------------------------------------------------------- /smartcrd/pscr/pscrcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/pscrcb.h -------------------------------------------------------------------------------- /smartcrd/pscr/pscrcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/pscrcmd.c -------------------------------------------------------------------------------- /smartcrd/pscr/pscrcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/pscrcmd.h -------------------------------------------------------------------------------- /smartcrd/pscr/pscrlog.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/pscrlog.mc -------------------------------------------------------------------------------- /smartcrd/pscr/pscrnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/pscrnt.c -------------------------------------------------------------------------------- /smartcrd/pscr/pscrnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/pscrnt.h -------------------------------------------------------------------------------- /smartcrd/pscr/pscrrdwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/pscrrdwr.c -------------------------------------------------------------------------------- /smartcrd/pscr/pscrrdwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/pscrrdwr.h -------------------------------------------------------------------------------- /smartcrd/pscr/pscrvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/pscr/pscrvers.h -------------------------------------------------------------------------------- /smartcrd/smartcrd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/smartcrd/smartcrd.sln -------------------------------------------------------------------------------- /spb/SkeletonI2C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/README.md -------------------------------------------------------------------------------- /spb/SkeletonI2C/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/controller.cpp -------------------------------------------------------------------------------- /spb/SkeletonI2C/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/controller.h -------------------------------------------------------------------------------- /spb/SkeletonI2C/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/device.cpp -------------------------------------------------------------------------------- /spb/SkeletonI2C/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/device.h -------------------------------------------------------------------------------- /spb/SkeletonI2C/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/driver.cpp -------------------------------------------------------------------------------- /spb/SkeletonI2C/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/driver.h -------------------------------------------------------------------------------- /spb/SkeletonI2C/hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/hw.cpp -------------------------------------------------------------------------------- /spb/SkeletonI2C/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/hw.h -------------------------------------------------------------------------------- /spb/SkeletonI2C/i2ctrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/i2ctrace.h -------------------------------------------------------------------------------- /spb/SkeletonI2C/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/internal.h -------------------------------------------------------------------------------- /spb/SkeletonI2C/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/resource.rc -------------------------------------------------------------------------------- /spb/SkeletonI2C/skeletoni2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SkeletonI2C/skeletoni2c.h -------------------------------------------------------------------------------- /spb/SpbTestTool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SpbTestTool/README.md -------------------------------------------------------------------------------- /spb/SpbTestTool/exe/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SpbTestTool/exe/command.h -------------------------------------------------------------------------------- /spb/SpbTestTool/exe/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SpbTestTool/exe/internal.h -------------------------------------------------------------------------------- /spb/SpbTestTool/exe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SpbTestTool/exe/main.cpp -------------------------------------------------------------------------------- /spb/SpbTestTool/exe/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SpbTestTool/exe/util.cpp -------------------------------------------------------------------------------- /spb/SpbTestTool/sys/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SpbTestTool/sys/device.cpp -------------------------------------------------------------------------------- /spb/SpbTestTool/sys/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SpbTestTool/sys/device.h -------------------------------------------------------------------------------- /spb/SpbTestTool/sys/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SpbTestTool/sys/driver.cpp -------------------------------------------------------------------------------- /spb/SpbTestTool/sys/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SpbTestTool/sys/driver.h -------------------------------------------------------------------------------- /spb/SpbTestTool/sys/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SpbTestTool/sys/internal.h -------------------------------------------------------------------------------- /spb/SpbTestTool/sys/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/spb/SpbTestTool/sys/trace.h -------------------------------------------------------------------------------- /storage/class/disk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/class/disk/README.md -------------------------------------------------------------------------------- /storage/class/disk/disk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/class/disk/disk.sln -------------------------------------------------------------------------------- /storage/class/disk/src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/class/disk/src/data.c -------------------------------------------------------------------------------- /storage/class/disk/src/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/class/disk/src/disk.c -------------------------------------------------------------------------------- /storage/class/disk/src/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/class/disk/src/disk.h -------------------------------------------------------------------------------- /storage/class/disk/src/disk.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/class/disk/src/disk.rc -------------------------------------------------------------------------------- /storage/class/disk/src/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/class/disk/src/enum.c -------------------------------------------------------------------------------- /storage/class/disk/src/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/class/disk/src/pnp.c -------------------------------------------------------------------------------- /storage/iscsi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/iscsi/README.md -------------------------------------------------------------------------------- /storage/iscsi/iscsi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/iscsi/iscsi.sln -------------------------------------------------------------------------------- /storage/iscsi/src/blockdir: -------------------------------------------------------------------------------- 1 | [Exclude] 2 | iscsi=yes 3 | -------------------------------------------------------------------------------- /storage/iscsi/src/common.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/iscsi/src/common.mof -------------------------------------------------------------------------------- /storage/iscsi/src/config.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/iscsi/src/config.mof -------------------------------------------------------------------------------- /storage/iscsi/src/def.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/iscsi/src/def.mof -------------------------------------------------------------------------------- /storage/iscsi/src/iscsihba.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/iscsi/src/iscsihba.mof -------------------------------------------------------------------------------- /storage/iscsi/src/iscsiprf.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/iscsi/src/iscsiprf.mof -------------------------------------------------------------------------------- /storage/iscsi/src/mgmt.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/iscsi/src/mgmt.mof -------------------------------------------------------------------------------- /storage/iscsi/src/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/iscsi/src/readme.txt -------------------------------------------------------------------------------- /storage/msdsm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/README.md -------------------------------------------------------------------------------- /storage/msdsm/msdsm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/msdsm.sln -------------------------------------------------------------------------------- /storage/msdsm/src/dsmmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/src/dsmmain.c -------------------------------------------------------------------------------- /storage/msdsm/src/dsmtrace.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/src/dsmtrace.mof -------------------------------------------------------------------------------- /storage/msdsm/src/intrface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/src/intrface.c -------------------------------------------------------------------------------- /storage/msdsm/src/msdsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/src/msdsm.h -------------------------------------------------------------------------------- /storage/msdsm/src/msdsm.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/src/msdsm.mof -------------------------------------------------------------------------------- /storage/msdsm/src/msdsm.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/src/msdsm.rc -------------------------------------------------------------------------------- /storage/msdsm/src/msdsmdsm.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/src/msdsmdsm.mof -------------------------------------------------------------------------------- /storage/msdsm/src/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/src/precomp.h -------------------------------------------------------------------------------- /storage/msdsm/src/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /storage/msdsm/src/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/src/prototypes.h -------------------------------------------------------------------------------- /storage/msdsm/src/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/src/trace.h -------------------------------------------------------------------------------- /storage/msdsm/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/src/utils.c -------------------------------------------------------------------------------- /storage/msdsm/src/wmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/msdsm/src/wmi.c -------------------------------------------------------------------------------- /storage/tools/spti/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/tools/spti/README.md -------------------------------------------------------------------------------- /storage/tools/spti/spti.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/tools/spti/spti.sln -------------------------------------------------------------------------------- /storage/tools/spti/src/spti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/tools/spti/src/spti.c -------------------------------------------------------------------------------- /storage/tools/spti/src/spti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/storage/tools/spti/src/spti.h -------------------------------------------------------------------------------- /thermal/simsensor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/thermal/simsensor/README.md -------------------------------------------------------------------------------- /thermal/simsensor/simsensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/thermal/simsensor/simsensor.c -------------------------------------------------------------------------------- /thermal/simsensor/simsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/thermal/simsensor/simsensor.h -------------------------------------------------------------------------------- /thermal/simsensor/simsensor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/thermal/simsensor/simsensor.rc -------------------------------------------------------------------------------- /thermal/thermalclient/simtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/thermal/thermalclient/simtc.c -------------------------------------------------------------------------------- /thermal/thermalclient/simtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/thermal/thermalclient/simtc.h -------------------------------------------------------------------------------- /thermal/thermalclient/simtc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/thermal/thermalclient/simtc.rc -------------------------------------------------------------------------------- /usb/UcmCxUcsi/Acpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/Acpi.cpp -------------------------------------------------------------------------------- /usb/UcmCxUcsi/Acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/Acpi.h -------------------------------------------------------------------------------- /usb/UcmCxUcsi/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/Driver.cpp -------------------------------------------------------------------------------- /usb/UcmCxUcsi/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/Driver.h -------------------------------------------------------------------------------- /usb/UcmCxUcsi/Fdo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/Fdo.cpp -------------------------------------------------------------------------------- /usb/UcmCxUcsi/Fdo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/Fdo.h -------------------------------------------------------------------------------- /usb/UcmCxUcsi/Pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/Pch.h -------------------------------------------------------------------------------- /usb/UcmCxUcsi/Ppm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/Ppm.cpp -------------------------------------------------------------------------------- /usb/UcmCxUcsi/Ppm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/Ppm.h -------------------------------------------------------------------------------- /usb/UcmCxUcsi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/README.md -------------------------------------------------------------------------------- /usb/UcmCxUcsi/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/Trace.h -------------------------------------------------------------------------------- /usb/UcmCxUcsi/UcmCallbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/UcmCallbacks.cpp -------------------------------------------------------------------------------- /usb/UcmCxUcsi/UcmCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/UcmCallbacks.h -------------------------------------------------------------------------------- /usb/UcmCxUcsi/UcmCxUcsi.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/UcmCxUcsi.inf -------------------------------------------------------------------------------- /usb/UcmCxUcsi/UcmCxUcsi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/UcmCxUcsi.sln -------------------------------------------------------------------------------- /usb/UcmCxUcsi/Ucsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/Ucsi.h -------------------------------------------------------------------------------- /usb/UcmCxUcsi/UcsiInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/UcsiInterface.h -------------------------------------------------------------------------------- /usb/UcmCxUcsi/UcsiUcmConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/UcsiUcmConvert.h -------------------------------------------------------------------------------- /usb/UcmCxUcsi/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/UcmCxUcsi/resource.rc -------------------------------------------------------------------------------- /usb/kmdf_fx2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/README.md -------------------------------------------------------------------------------- /usb/kmdf_fx2/driver/Device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/driver/Device.c -------------------------------------------------------------------------------- /usb/kmdf_fx2/driver/bulkrwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/driver/bulkrwr.c -------------------------------------------------------------------------------- /usb/kmdf_fx2/driver/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/driver/driver.c -------------------------------------------------------------------------------- /usb/kmdf_fx2/driver/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/driver/ioctl.c -------------------------------------------------------------------------------- /usb/kmdf_fx2/driver/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/driver/trace.h -------------------------------------------------------------------------------- /usb/kmdf_fx2/exe/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/exe/dump.c -------------------------------------------------------------------------------- /usb/kmdf_fx2/exe/test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/exe/test.cmd -------------------------------------------------------------------------------- /usb/kmdf_fx2/exe/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/exe/testapp.c -------------------------------------------------------------------------------- /usb/kmdf_fx2/exe/testapp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/exe/testapp.rc -------------------------------------------------------------------------------- /usb/kmdf_fx2/inc/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/inc/prototypes.h -------------------------------------------------------------------------------- /usb/kmdf_fx2/inc/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/inc/public.h -------------------------------------------------------------------------------- /usb/kmdf_fx2/kmdf_fx2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/kmdf_fx2/kmdf_fx2.sln -------------------------------------------------------------------------------- /usb/ufxclientsample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/ufxclientsample/README.md -------------------------------------------------------------------------------- /usb/ufxclientsample/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/ufxclientsample/device.c -------------------------------------------------------------------------------- /usb/ufxclientsample/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/ufxclientsample/device.h -------------------------------------------------------------------------------- /usb/ufxclientsample/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/ufxclientsample/driver.c -------------------------------------------------------------------------------- /usb/ufxclientsample/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/ufxclientsample/driver.h -------------------------------------------------------------------------------- /usb/ufxclientsample/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/ufxclientsample/event.c -------------------------------------------------------------------------------- /usb/ufxclientsample/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/ufxclientsample/event.h -------------------------------------------------------------------------------- /usb/ufxclientsample/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/ufxclientsample/trace.h -------------------------------------------------------------------------------- /usb/ufxclientsample/transfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/ufxclientsample/transfer.c -------------------------------------------------------------------------------- /usb/ufxclientsample/transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/ufxclientsample/transfer.h -------------------------------------------------------------------------------- /usb/umdf2_fx2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/README.md -------------------------------------------------------------------------------- /usb/umdf2_fx2/driver/Device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/driver/Device.c -------------------------------------------------------------------------------- /usb/umdf2_fx2/driver/bulkrwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/driver/bulkrwr.c -------------------------------------------------------------------------------- /usb/umdf2_fx2/driver/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/driver/driver.c -------------------------------------------------------------------------------- /usb/umdf2_fx2/driver/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/driver/ioctl.c -------------------------------------------------------------------------------- /usb/umdf2_fx2/driver/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/driver/trace.h -------------------------------------------------------------------------------- /usb/umdf2_fx2/exe/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/exe/dump.c -------------------------------------------------------------------------------- /usb/umdf2_fx2/exe/test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/exe/test.cmd -------------------------------------------------------------------------------- /usb/umdf2_fx2/exe/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/exe/testapp.c -------------------------------------------------------------------------------- /usb/umdf2_fx2/exe/testapp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/exe/testapp.rc -------------------------------------------------------------------------------- /usb/umdf2_fx2/inc/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/inc/prototypes.h -------------------------------------------------------------------------------- /usb/umdf2_fx2/inc/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/inc/public.h -------------------------------------------------------------------------------- /usb/umdf2_fx2/umdf2_fx2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/umdf2_fx2/umdf2_fx2.sln -------------------------------------------------------------------------------- /usb/usbsamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/README.md -------------------------------------------------------------------------------- /usb/usbsamp/exe/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/exe/testapp.c -------------------------------------------------------------------------------- /usb/usbsamp/exe/testapp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/exe/testapp.rc -------------------------------------------------------------------------------- /usb/usbsamp/sys/bulkrwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/sys/bulkrwr.c -------------------------------------------------------------------------------- /usb/usbsamp/sys/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/sys/device.c -------------------------------------------------------------------------------- /usb/usbsamp/sys/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/sys/driver.c -------------------------------------------------------------------------------- /usb/usbsamp/sys/isorwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/sys/isorwr.c -------------------------------------------------------------------------------- /usb/usbsamp/sys/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/sys/private.h -------------------------------------------------------------------------------- /usb/usbsamp/sys/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/sys/public.h -------------------------------------------------------------------------------- /usb/usbsamp/sys/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/sys/queue.c -------------------------------------------------------------------------------- /usb/usbsamp/sys/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/sys/stream.c -------------------------------------------------------------------------------- /usb/usbsamp/sys/usbsamp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/sys/usbsamp.rc -------------------------------------------------------------------------------- /usb/usbsamp/usbsamp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbsamp/usbsamp.sln -------------------------------------------------------------------------------- /usb/usbview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/README.md -------------------------------------------------------------------------------- /usb/usbview/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/app.config -------------------------------------------------------------------------------- /usb/usbview/bang.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/bang.ico -------------------------------------------------------------------------------- /usb/usbview/codeanalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/codeanalysis.h -------------------------------------------------------------------------------- /usb/usbview/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/debug.c -------------------------------------------------------------------------------- /usb/usbview/devnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/devnode.c -------------------------------------------------------------------------------- /usb/usbview/dispaud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/dispaud.c -------------------------------------------------------------------------------- /usb/usbview/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/display.c -------------------------------------------------------------------------------- /usb/usbview/dispvid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/dispvid.c -------------------------------------------------------------------------------- /usb/usbview/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/enum.c -------------------------------------------------------------------------------- /usb/usbview/h264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/h264.c -------------------------------------------------------------------------------- /usb/usbview/h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/h264.h -------------------------------------------------------------------------------- /usb/usbview/hub.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/hub.ico -------------------------------------------------------------------------------- /usb/usbview/langidlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/langidlist.h -------------------------------------------------------------------------------- /usb/usbview/monitor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/monitor.ico -------------------------------------------------------------------------------- /usb/usbview/port.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/port.ico -------------------------------------------------------------------------------- /usb/usbview/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/resource.h -------------------------------------------------------------------------------- /usb/usbview/split.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/split.cur -------------------------------------------------------------------------------- /usb/usbview/ssport.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/ssport.ico -------------------------------------------------------------------------------- /usb/usbview/ssusb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/ssusb.ico -------------------------------------------------------------------------------- /usb/usbview/usb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/usb.ico -------------------------------------------------------------------------------- /usb/usbview/usbdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/usbdesc.h -------------------------------------------------------------------------------- /usb/usbview/usbschema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/usbschema.hpp -------------------------------------------------------------------------------- /usb/usbview/usbviddesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/usbviddesc.h -------------------------------------------------------------------------------- /usb/usbview/usbview.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/usbview.sln -------------------------------------------------------------------------------- /usb/usbview/usbview.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/usbview.vcxproj -------------------------------------------------------------------------------- /usb/usbview/uvcdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/uvcdesc.h -------------------------------------------------------------------------------- /usb/usbview/uvcview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/uvcview.c -------------------------------------------------------------------------------- /usb/usbview/uvcview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/uvcview.h -------------------------------------------------------------------------------- /usb/usbview/uvcview.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/uvcview.rc -------------------------------------------------------------------------------- /usb/usbview/vndrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/vndrlist.h -------------------------------------------------------------------------------- /usb/usbview/xmlhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/xmlhelper.cpp -------------------------------------------------------------------------------- /usb/usbview/xmlhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/usbview/xmlhelper.h -------------------------------------------------------------------------------- /usb/wdf_osrfx2_lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/usb/wdf_osrfx2_lab/README.md -------------------------------------------------------------------------------- /video/KMDOD/KMDOD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/KMDOD/KMDOD.sln -------------------------------------------------------------------------------- /video/KMDOD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/KMDOD/README.md -------------------------------------------------------------------------------- /video/KMDOD/bdd.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/KMDOD/bdd.cxx -------------------------------------------------------------------------------- /video/KMDOD/bdd.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/KMDOD/bdd.hxx -------------------------------------------------------------------------------- /video/KMDOD/bdd_ddi.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/KMDOD/bdd_ddi.cxx -------------------------------------------------------------------------------- /video/KMDOD/bdd_dmm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/KMDOD/bdd_dmm.cxx -------------------------------------------------------------------------------- /video/KMDOD/bdd_errorlog.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/KMDOD/bdd_errorlog.hxx -------------------------------------------------------------------------------- /video/KMDOD/bdd_util.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/KMDOD/bdd_util.cxx -------------------------------------------------------------------------------- /video/KMDOD/bltfuncs.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/KMDOD/bltfuncs.cxx -------------------------------------------------------------------------------- /video/KMDOD/blthw.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/KMDOD/blthw.cxx -------------------------------------------------------------------------------- /video/KMDOD/memory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/KMDOD/memory.cxx -------------------------------------------------------------------------------- /video/KMDOD/sampledisplay.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/KMDOD/sampledisplay.rc -------------------------------------------------------------------------------- /video/archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/archive/README.md -------------------------------------------------------------------------------- /video/archive/pixlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/video/archive/pixlib/README.md -------------------------------------------------------------------------------- /wia/ProdScan/BasicArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/BasicArray.h -------------------------------------------------------------------------------- /wia/ProdScan/CapMan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/CapMan.cpp -------------------------------------------------------------------------------- /wia/ProdScan/CapMan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/CapMan.h -------------------------------------------------------------------------------- /wia/ProdScan/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/Constants.h -------------------------------------------------------------------------------- /wia/ProdScan/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/Events.cpp -------------------------------------------------------------------------------- /wia/ProdScan/FileConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/FileConv.cpp -------------------------------------------------------------------------------- /wia/ProdScan/FileConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/FileConv.h -------------------------------------------------------------------------------- /wia/ProdScan/InitProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/InitProp.cpp -------------------------------------------------------------------------------- /wia/ProdScan/MiniDrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/MiniDrv.cpp -------------------------------------------------------------------------------- /wia/ProdScan/MiniDrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/MiniDrv.h -------------------------------------------------------------------------------- /wia/ProdScan/ProdScan.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/ProdScan.def -------------------------------------------------------------------------------- /wia/ProdScan/ProdScan.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/ProdScan.inx -------------------------------------------------------------------------------- /wia/ProdScan/ProdScan.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/ProdScan.rc -------------------------------------------------------------------------------- /wia/ProdScan/PropMan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/PropMan.cpp -------------------------------------------------------------------------------- /wia/ProdScan/PropMan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/PropMan.h -------------------------------------------------------------------------------- /wia/ProdScan/Res/Micr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/Res/Micr.xml -------------------------------------------------------------------------------- /wia/ProdScan/ScanJobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/ScanJobs.cpp -------------------------------------------------------------------------------- /wia/ProdScan/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/Server.cpp -------------------------------------------------------------------------------- /wia/ProdScan/StiUSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/StiUSD.cpp -------------------------------------------------------------------------------- /wia/ProdScan/Validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/Validate.cpp -------------------------------------------------------------------------------- /wia/ProdScan/WiaUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/WiaUtil.cpp -------------------------------------------------------------------------------- /wia/ProdScan/WiaUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/WiaUtil.h -------------------------------------------------------------------------------- /wia/ProdScan/readme.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/readme.mht -------------------------------------------------------------------------------- /wia/ProdScan/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/resource.h -------------------------------------------------------------------------------- /wia/ProdScan/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/ProdScan/stdafx.h -------------------------------------------------------------------------------- /wia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/README.md -------------------------------------------------------------------------------- /wia/copywia.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/copywia.cmd -------------------------------------------------------------------------------- /wia/inc/WiaCI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/inc/WiaCI.h -------------------------------------------------------------------------------- /wia/microdrv/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/microdrv/resource.h -------------------------------------------------------------------------------- /wia/microdrv/testmcro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/microdrv/testmcro.cpp -------------------------------------------------------------------------------- /wia/microdrv/testmcro.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/microdrv/testmcro.def -------------------------------------------------------------------------------- /wia/microdrv/testmcro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/microdrv/testmcro.h -------------------------------------------------------------------------------- /wia/microdrv/testmcro.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/microdrv/testmcro.inx -------------------------------------------------------------------------------- /wia/microdrv/testmcro.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/microdrv/testmcro.rc -------------------------------------------------------------------------------- /wia/microdrv/testmcro.rcv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/microdrv/testmcro.rcv -------------------------------------------------------------------------------- /wia/wia.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/wia.sln -------------------------------------------------------------------------------- /wia/wiadriverex/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wia/wiadriverex/sample.bmp -------------------------------------------------------------------------------- /wmi/wmiacpi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmiacpi/README.md -------------------------------------------------------------------------------- /wmi/wmiacpi/acpimof.def: -------------------------------------------------------------------------------- 1 | LIBRARY acpimof.dll 2 | 3 | -------------------------------------------------------------------------------- /wmi/wmiacpi/acpimof.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmiacpi/acpimof.mof -------------------------------------------------------------------------------- /wmi/wmiacpi/acpimof.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmiacpi/acpimof.rc -------------------------------------------------------------------------------- /wmi/wmiacpi/acpimof.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmiacpi/acpimof.vcxproj -------------------------------------------------------------------------------- /wmi/wmiacpi/device.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmiacpi/device.asl -------------------------------------------------------------------------------- /wmi/wmiacpi/wmi-acpi.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmiacpi/wmi-acpi.htm -------------------------------------------------------------------------------- /wmi/wmiacpi/wmiacpi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmiacpi/wmiacpi.sln -------------------------------------------------------------------------------- /wmi/wmisamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmisamp/README.md -------------------------------------------------------------------------------- /wmi/wmisamp/WmiHandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmisamp/WmiHandler.c -------------------------------------------------------------------------------- /wmi/wmisamp/WmiSamp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmisamp/WmiSamp.rc -------------------------------------------------------------------------------- /wmi/wmisamp/WmiSamp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmisamp/WmiSamp.vcxproj -------------------------------------------------------------------------------- /wmi/wmisamp/wmisamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmisamp/wmisamp.c -------------------------------------------------------------------------------- /wmi/wmisamp/wmisamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmisamp/wmisamp.h -------------------------------------------------------------------------------- /wmi/wmisamp/wmisamp.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmisamp/wmisamp.inx -------------------------------------------------------------------------------- /wmi/wmisamp/wmisamp.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmisamp/wmisamp.mof -------------------------------------------------------------------------------- /wmi/wmisamp/wmisamp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-driver-samples/HEAD/wmi/wmisamp/wmisamp.sln --------------------------------------------------------------------------------