summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-23Avshws.sys fails to build clean. Typo. (#484)Joel Corley
- Fix typo of ExAllocatePoolZero(). - Add PnpLockdown flag to INX file.
2020-04-20Update simdeviceumdf139639zlockard
Update INF to remove deprecated UMDF 1.* directive
2020-04-10Add CA defect to SDV-FailDriver-WDM sample137243Adonais Romero González
Add a simple C28171 code analysis for drivers violation to the SDV-FailDriver-WDM sample, so that we can use it to validate CA for drivers is working correctly.
2020-04-09Add CA defect to SDV-FailDriver-WDM sampleNateD-MSFT
Add a simple C28171 code analysis for drivers violation to the SDV-FailDriver-WDM sample, so that we can use it to validate CA for drivers is working correctly.
2020-04-07Update all the AvStream samples for Vibranium136198136197136196136195136194Adonais Romero González
Update all the AvStream samples for Vibranium.
2020-04-07Merge branch 'UpdateVibraniumAvstream' of ↵Joel Corley
https://github.com/JoelCorley/Windows-driver-samples into UpdateVibraniumAvstream
2020-04-07Fix typos, etc. to address review comments.Joel Corley
2020-04-06Replaced ExAllocatePoolWithTag with ExAllocatePoolZero in avsstream samplesYiwen Jiang
2020-04-03Undo unnecessary changes to project file.Joel Corley
2020-04-03Fix WDI sample buildGuillaume Hetier
2020-04-02Fix deprecated pool allocation functionGuillaume Hetier
2020-03-26Add Indirect Display Driver sample (#459)132485Adonais Romero González
* Add Indirect Display Driver sample * minor cleanup * Update sample notification email * Update inf with Pnplockdown=1 Co-authored-by: Shantanu Gupta <[email protected]>
2020-03-26fix casingShantanu Gupta
2020-03-24Rewrite the service for the best practice of Win32 Services Interacti… (#472)131800andylsn
* Rewrite the service for the best practice of Win32 Services Interacting with Devices * Rewrite the service using pure WIN32 APIs * Support multiple device interfaces * Add WINAPI decoration to notification callbacks to avoid AV issue * A small fix * Implement OSRFX2 samples for AddTrigger syntax and service lifetime control * Add comment on AddTrigger syntax Co-authored-by: Shunni Li <[email protected]> * Update inx file (#2) Co-authored-by: Shunni Li <[email protected]> * Add PnpLockdown in INX * Update osrfx2_DCHU_base.inx Co-authored-by: Shunni Li <[email protected]>
2020-03-24Update inf with Pnplockdown=1Shantanu Gupta
2020-02-20Update sample notification emailShantanu Gupta
2020-02-19minor cleanupShantanu Gupta
2020-02-19Add Indirect Display Driver sampleShantanu Gupta
2020-02-11Revert the accidential overwriting of README.MD files.Joel Corley
2020-01-21Add missing nuget package file.Joel Corley
2020-01-21Update all the AvStream samples for Vibranium.Joel Corley
2020-01-08SFloppy: RtlStringCbPrintf?() need bytes, not chars (#442)112654Serge Gautherie
2020-01-08Removed repeated sentence (#449)112648Dominic Letz
2020-01-07Update README.md (#450)112269112268112267112266112265Barry Golden
2020-01-06Updated links to https (#448)112023112022112021112020112019112018112017112016112015112014112013112012112011112010112009112008112007112006Barry Golden
2020-01-06Update README.md111986Barry Golden
2020-01-03Update README.md111600Barry Golden
2019-12-11Update readme.mdBarry Golden
2019-12-11Update README.mdBarry Golden
2019-12-11Update readme.mdBarry Golden
2019-12-10Update README.md105368Barry Golden
2019-12-04Updates on the SysVAD driver sample (#443)104069Daniel Rugerio
* Update SysVAD public sample. * Add WaveTest public sample. * Modify the componentized audio samples to include the addComponent directive. * Dropped the Phone Audio sample. * Updated README.md. * Added explanation for the Phone Audio sample.
2019-11-12Update the Bluetooth Serial HCI Bus Driver sample to exemplify PLDR (#438)99498Rahul Ramadas
2019-11-12Fix missing stdexcept header in sampledevicemft (#441)99495Adonais Romero González
2019-10-24Update README.mddocs
2019-10-22Merge branch 'master' of https://github.com/microsoft/Windows-driver-samplesRajib Dutta
2019-10-22Making controller D3 timeout for screen on and Off HLK requirements ↵Rajib Dutta
compliant. Refer to requirement: device.buscontroller.i2c.idlepowermanagement
2019-10-22Making controller D3 timeout for screen on and HLK requirements compliant. ↵Rajib Dutta
Refer to requirement: device.buscontroller.i2c.idlepowermanagement
2019-10-15Update README.md9192791923docs
2019-10-15Update README.mddocs
2019-10-01Update README.md (#429)888228882188820888198881888817Barry Golden
2019-09-30Update README.md (#428)886938869288691886908868988688Barry Golden
2019-09-30Update README.md (#427)88568885678856688565885648856388562885618856088559885588855788556Barry Golden
2019-09-26Update README.md (#426)877798777887777877768777587774877738777287771877708776987768Barry Golden
* Update README.md * Update README.md
2019-09-25Update README.md (#425)8758187580875798757887577875768757587574875738757287571875708756987568875678756687565875648756387562Barry Golden
2019-09-25Update README.md (#424)87280872798727887277872768727587274872738727287271872708726987268872678726687265872648726387262872618726087259872588725787255872548725387252Barry Golden
2019-09-24Fix changing and reading FAT labels with leading 0xE5 byte in fastfat.sys (#303)86973pali
FAT Volume Label is stored in the root directory entry and therefore when setting new Volume Label with leading 0xE5 byte it first needs to be converted to 0x05 byte. This step is also required by Microsoft FAT specification (fatgen103.doc) and also applied for all other files and directories. But not for volume label yet. First byte 0xE5 in directory entry means that entry is removed. Similarly, when reading Volume Label from the root directory, leading byte 0x05 first needs to be converted to 0xE5 and then later processed. This is reverse operation as described in previous paragraph. FAT Volume Label is converted from Unicode to bytes according to OEM code page. OEM code page is configured in Language for non-Unicode applications settings in Country/Region settings. When it is set to English (United Kingdom), then OEM code page is 850. And in 850 is Unicode LATIN CAPITAL LETTER O WITH TILDE represented as 0xE5. Therefore this pull request fixes setting FAT label "Õ" when regional settings are set to English (United Kingdom).
2019-09-23Update README.md (#422)8629686295862948629386292862918629086289Barry Golden
2019-09-19Update README.md (#421)8552485523855228552185520855198551885517855168551585514855138551285511855108550985508855078550685505Barry Golden
2019-09-18Update README.md (#420)853518534985348853478534685345853448534385342853418534085339Barry Golden