summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-05-01Remove unused WIA idl fileWei Mao
2017-04-30Merge pull request #129 from DavidEGrayson/pr_devcon1Wei Mao
devcon: Made DumpDeviceDriversCallback be __stdcall.
2017-04-30devcon: Add CALLBACK to DumpDeviceDriversCallback definition.David Grayson
The function is passed to SetupScanFileQueue, which expects it to be a PSP_FILE_CALLBACK. The definition of PSP_FILE_CABLLBACK includes CALLBACK. The definition of CALLBACK usually is __stdcall. This change is needed for compiling devcon with mingw-w64.
2017-04-28Merge pull request #136 from ajbarb/fix_custom_capability_nameWei Mao
Updated the custom capbability to match the CustomCapabilty UWP sample
2017-04-28Updated the custom capbability to match the CustomCapabilty UWP sampleAjay Barboza
2017-03-21Merge pull request #125 from girishpattabiraman/masterWei Mao
Ignore both 4049 and 4217 warning for SwapAPO.vcxproj. The error text is the same: locally defined symbol __stdio_common_vswprintf imported from AudioBaseProcessingObjectV140.lib
2017-03-21Merge pull request #30 from AndrewGaspar/spellingWei Mao
Fix spelling of ENUERATE in ndis filter sample. Keep old IOCTL name to not break existing drivers
2017-03-21Ignoring specific linker warnings for RS1 and RS2Girish Pattabiraman
2017-03-21Keep old IOCTL name to not break existing driversWei Mao
2017-03-21Merge pull request #103 from FaraSeer/devcon_unicodeWei Mao
2017-03-21Fix an trailing \r\n issueWei Mao
2017-03-21Add cmdline option -u for Unicode (UTF-16) outputWei Mao
2017-03-20Ignore warning 4049 instead of 4127Girish Pattabiraman
2017-03-20Merge pull request #118 from saredd/masterWei Mao
2017-03-20Add a script to build all samplesWei Mao
2017-03-20Fix build failuresWei Mao
2017-03-18Merge pull request #38 from plujon/msnmntr-bad-castWei Mao
Avoid 0x80000003 on 32-bit Windows in msnmntr.
2017-03-18Merge pull request #124 from wm1/wm1/fix-casesWei Mao
Fix git directory name case problems
2017-03-17Use lower caseWei Mao
2017-03-17Fix casesWei Mao
2017-03-16Fix issue #122 - Try it againWei Mao
2017-03-16_IRQL_limited_to_(PASSIVE_LEVEL) in function bodyWei Mao
2017-03-16UsbView: Display more BOS descriptorsWei Mao
2017-03-16Fix issue #122 - USBView incorrectly prints out bType of unknown capability ↵Wei Mao
descriptor
2017-03-15Merge pull request #41 from pccq2002/patch-1Wei Mao
Update CdoOperations.c
2017-03-15Got rid of useless casts in AvScan.cElias Bachaalany
2017-03-15Merge pull request #80 from hnebelung/bugfix/DisplayConnectionInfoWei Mao
Fix DisplayConnectionInfo
2017-03-15Merge pull request #83 from lallousx86/minor-typoWei Mao
minor typo fix
2017-03-15Merge pull request #93 from Mapleaph/regdevicemapWei Mao
Fix NULL-terminating device name when writing to DEVICEMAP/SERIALCOMM
2017-03-15Fix issue #109 No kbfiltr.inf fileWei Mao
- Also fix mouse filter for the same issue. - hiddigi\SynapticsTouch for NT$ARCH$ decoration
2017-03-15Merge branch 'master' of https://github.com/Microsoft/Windows-driver-samplesWei Mao
2017-03-15Fix issue #119 PLX9x5x.sln - missing PLxEvtIoDeviceControl functionWei Mao
2017-03-15Fix issue #51 PLX9x5x.sln - missing PLxEvtIoDeviceControl functionWei Mao
2017-03-15[usb] Fix Code Analysis WarningsWei Mao
2017-03-15Fix issue #66 - Confusing `MaximumTransferSize` and `maxTransferSize` inMichelle Bergeron
usbsamp
2017-03-14[usb] Fix Code Analysis WarningsWei Mao
2017-03-14[usb/ucmcx] Fix Code Analysis WarningsWei Mao
2017-03-14Merge pull request #121 from wm1/usb/kmdf_fx2/codeanalysisKarl Froelich
Usb/kmdf fx2/codeanalysis
2017-03-14Allow samples to build successfully on RS1 WDKWei Mao
C/C++ standards specifies that during !if pre-processing, any undefined identifier is replaced with pp-number 0. Thus !if NTDDI >= RS2 is evaluated to true on RS1 DDK, even if NTDDI_RS2 is not defined there
2017-03-13[usb/kmdf_fx2] Fix Code Analysis WarningsWei Mao
2017-03-13Merge pull request #120 from ajbarb/update-osrfx2usb-customcapabilityKarl Froelich
Setting custom capability on a device interface instance to access it…
2017-03-13Setting custom capability on a device interface instance to access it using ↵ajbarb
windows store devica app
2017-03-09Fix OACR code analysis warningsSanjeev Reddy
2017-03-09Temporarily removing this code for rearchitecturekarlf
2017-03-02Merge pull request #114 from girishpattabiraman/masterKarl Froelich
Resolve SAL warnings and suppress 4595
2017-03-01Visual Studio will default to linking with VC Runtime DLL if ↵Girish Pattabiraman
<RuntimeLibrary> is not specified. This Tag needs to be explicitly emptied out. SwapAPO DLL doesn't need the CRT because the CRT is included in "AudioBaseProcessingObjectV140.lib". Have to specifically ignore the Linker error 4217 because vsprintfxxx is being included locally through AudioBaseProcessingObjectV140.lib.
2017-02-16Resolve SAL issues for floating point hardware state.Girish Pattabiraman
Comment explaining warning 6386
2017-02-08Removing local "new and delete operators" and suppressing warning 4595Girish Pattabiraman
2017-02-08Removed definition of "void __cdecl operator delete(void *)" to avoid linker ↵Girish Pattabiraman
error with stdunk.lib
2017-02-08Add NewDelete operators locally as recommeded in C4595 warning and "stdunk.h"Girish Pattabiraman