Updated YAML manifest for Microsoft Samples portal. (#287)

* Rename YAML manifests to use .yml extension
* Add preserveParentHierarchy: true to YAML manifest
* Updated YAML manifest for Microsoft Samples portal.
* Fix YAML newline warnings
* Updated vssolution path in YAML manifests
This commit is contained in:
Barry Golden 2018-09-24 14:36:17 -07:00 коммит произвёл Adonais Romero González
Родитель 42ee96982a
Коммит 5c2d787787
158 изменённых файлов: 336 добавлений и 12 удалений

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: TrEE sample
description: TrEE sample
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /TrEE/TrEESample.sln

Просмотреть файл

@ -1,3 +1,12 @@
<!---
name: SysVAD Virtual Audio Device Driver Sample
platform: WDM
language: cpp
category: Audio
description: The Microsoft SysVAD Virtual Audio Device Driver (SYSVAD) shows how to develop a WDM audio driver that exposes support for multiple audio devices.
samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=620183
--->
SysVAD Virtual Audio Device Driver Sample
========================================

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: SysVAD Virtual Audio Device Driver Sample
description: The Microsoft SysVAD Virtual Audio Device Driver (SYSVAD) shows how to develop a WDM audio driver that exposes support for multiple audio devices.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /audio/sysvad/sysvad.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: AvsCamera - AVStream Camera Sample Driver
description: Provides a pin-centric AVStream capture driver for a simulated front and back camera that performs simulated captures at 320x240 or 640x480 in RGB24, RGB32, YUY2 and NV12 formats at various frame rates.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /avstream/avscamera/avscamera.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: AVStream simulated hardware sample driver (Avshws)
description: A simulated hardware sample driver providing a pin-centric capture driver to simulate AV capture hardware.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /avstream/avshws/avshws.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: AVStream filter-centric simulated capture sample driver (Avssamp)
description: An AVStream filter-centric simulated capture sample driver with functional audio.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /avstream/avssamp/avssamp.sln

Просмотреть файл

@ -23,7 +23,7 @@ Related topics
**Concepts**
[Windows Store device apps for cameras](http://go.microsoft.com/fwlink/p/?LinkId=306683)
[UWP device apps for cameras](http://go.microsoft.com/fwlink/p/?LinkId=306683)
[Media Foundation Transforms](http://msdn.microsoft.com/en-us/library/windows/hardware/ms703138)
@ -33,6 +33,6 @@ Related topics
**Samples**
[Windows Store device app for camera sample](http://go.microsoft.com/fwlink/p/?linkid=249442)
[Device app for camera sample](http://go.microsoft.com/fwlink/p/?linkid=249442)
[Camera Capture UI sample](http://go.microsoft.com/fwlink/p/?linkid=249441%20)

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Driver Device Transform Sample
description: A driver device transform which loads in a process streaming an Avstream based camera device using Media Foundation.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /avstream/sampledevicemft/SampleDeviceMft.sln

Просмотреть файл

@ -3,16 +3,16 @@
platform: WDM
language: cpp
category: Camera
description: A driver MFT for use with a camera's Windows Store device app.
description: A driver MFT for use with a camera's UWP device app.
samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617126
--->
Driver MFT Sample
=================
Provides a *driver MFT* for use with a camera's Windows Store device app.A *driver MFT* is a Media Foundation Transform that's used with a specific camera when capturing video. The driver MFT is also known as MFT0 because it is the first MFT applied to the video stream captured from the camera. This MFT can provide a video effect or other processing when capturing photos or video from the camera. It can be distributed along with the driver package for a camera.
Provides a *driver MFT* for use with a camera's UWP device app.A *driver MFT* is a Media Foundation Transform that's used with a specific camera when capturing video. The driver MFT is also known as MFT0 because it is the first MFT applied to the video stream captured from the camera. This MFT can provide a video effect or other processing when capturing photos or video from the camera. It can be distributed along with the driver package for a camera.
In this sample, the driver MFT, when enabled, replaces a portion of the captured video with a green box. To test this sample, download the [Windows Store device app for camera sample](http://go.microsoft.com/fwlink/p/?linkid=249442) and the [Camera Capture UI sample](http://go.microsoft.com/fwlink/p/?linkid=249441). The [Windows Store device app for camera sample](http://go.microsoft.com/fwlink/p/?linkid=249442) provides a *Windows Store device app* that controls the effect implemented by the driver MFT. The [Camera Capture UI sample](http://go.microsoft.com/fwlink/p/?linkid=249441) provides a way to invoke the *Windows Store device app*.
In this sample, the driver MFT, when enabled, replaces a portion of the captured video with a green box. To test this sample, download the [UWP device app for camera sample](http://go.microsoft.com/fwlink/p/?linkid=249442) and the [Camera Capture UI sample](http://go.microsoft.com/fwlink/p/?linkid=249441). The [UWP device app for camera sample](http://go.microsoft.com/fwlink/p/?linkid=249442) provides a *UWP device app* that controls the effect implemented by the driver MFT. The [Camera Capture UI sample](http://go.microsoft.com/fwlink/p/?linkid=249441) provides a way to invoke the *UWP device app*.
This sample is designed to be used with a specific camera. To run the sample, you need the your camera's device ID and device metadata package.
@ -22,7 +22,7 @@ Related topics
**Concepts**
[Windows Store device apps for cameras](http://go.microsoft.com/fwlink/p/?LinkId=306683)
[UWP device apps for cameras](http://go.microsoft.com/fwlink/p/?LinkId=306683)
[Media Foundation Transforms](http://msdn.microsoft.com/en-us/library/windows/hardware/ms703138)
@ -32,6 +32,6 @@ Related topics
**Samples**
[Windows Store device app for camera sample](http://go.microsoft.com/fwlink/p/?linkid=249442)
[Device app for camera sample](http://go.microsoft.com/fwlink/p/?linkid=249442)
[Camera Capture UI sample](http://go.microsoft.com/fwlink/p/?linkid=249441%20)

Просмотреть файл

@ -1,10 +1,12 @@
### YamlMime:Sample
sample:
- name: Driver MFT Sample
description: A driver MFT for use with a camera's Windows Store device app.
description: A driver MFT for use with a camera's Windows device app.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /avstream/samplemft0/SampleMft0.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Windows Biometric Driver Samples (UMDF Version 1)
description: Contains the Windows Biometric Driver Interface sample and the Windows Biometric Service Adapter samples.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /biometrics/WBDIsample.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Bluetooth Echo L2CAP Profile Driver
description: Demonstrates development of Bluetooth L2CAP profile drivers using the Bluetooth L2CAP DDIs.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /bluetooth/bthecho/bthecho.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Bluetooth Serial HCI Bus Driver
description: Demonstrates how to implement a basic bus driver to support the new Bluetooth Extensibility transport DDIs over the UART transport.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /bluetooth/serialhcibus/serialhcibus.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: CDFS File System Driver
description: The CD-ROM file system driver (cdfs) sample is a file system driver for removable media.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/cdfs/cdfs.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: fastfat File System Driver
description: A file system driver based on the Windows inbox FastFAT file system used as a model for new file systems.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/fastfat/fastfat.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Metadata Manager File System Minifilter Driver
description: An example of how to use files for storing metadata that corresponds to minifilters.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/MetadataManager/MetadataManager.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: NameChanger File System Minifilter Driver
description: Grafts a directory from one part of a volume's namespace to another part using a mapping.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/NameChanger/NameChanger.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: AvScan File System Minifilter Driver
description: This filter is a transaction-aware file scanner that examines data in files.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/avscan/avscan.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: CancelSafe File System Minifilter Driver
description: A minifilter demonstrating the use of cancel-safe queues.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/cancelSafe/cancelSafe.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: CDO File System Minifilter Driver
description: An example of using a control device object (CDO) with a minifilter.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/cdo/cdo.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Change File System Minifilter Driver
description: A transaction-aware filter that monitors file changes in real time.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/change/change.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Ctx File System Minifilter Driver
description: Demonstrates how to attach contexts to instances, files, streams, and stream handles in your minifilter.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/ctx/ctx.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Delete File System Minifilter Driver
description: Demonstrates how to detect deletions of files or streams.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/delete/delete.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Minispy File System Minifilter Driver
description: A tool to monitor and log any I/O and transaction activity that occurs in the system.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/minispy/minispy.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: NullFilter File System Minifilter Driver
description: A minifilter that demonstrates registration with the filter manager.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/nullFilter/nullFilter.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: PassThrough File System Minifilter Driver
description: Demonstrates how to specify callback functions for different types of I/O requests.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/passThrough/passThrough.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Scanner File System Minifilter Driver
description: A file data scanner example. Typically, anti-virus filters are of this type.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/scanner/scanner.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: SimRep File System Minifilter Driver
description: Demonstrates how a file system filter can simulate file-system like reparse-point behavior to redirect a file open to an alternate path.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/simrep/simrep.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: SwapBuffer File System Minifilter Driver
description: Demonstrates how to switch buffers between reads and writes of data. This technique is particularly useful for encryption filters.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /filesys/miniFilter/swapBuffers/swapBuffers.sln

Просмотреть файл

@ -3,6 +3,7 @@ sample:
- name: DHCU - Driver package installation toolkit for universal drivers
description: Illustrates DCHU principles of universal driver design.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: PLX9x5x PCI Driver
description: Demonstrates how to write a driver for a generic PCI device using Windows Driver Frameworks (WDF).
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/PLX9x5x/PLX9x5x.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: System DMA sample
description: Demonstrates how a driver could use a system DMA controller to write data to a hardware location using V3 System DMA.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/SystemDma/wdm/SystemDma.sln

Просмотреть файл

@ -3,6 +3,7 @@ sample:
- name: WinHEC 2017 Lab
description: WinHEC 2017 Lab
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Cancel-Safe IRP Queue Sample
description: Demonstrates the use of the cancel-safe queue routines.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/cancel/cancel.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: KMDF Echo Sample
description: Demonstrates how to use a sequential queue to serialize read and write requests presented to the driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/echo/kmdf/kmdfecho.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Echo Sample (UMDF Version 1)
description: Demonstrates how to use UMDF version 1 to write a driver and demonstrates best practices.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/echo/umdf/echo.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Echo Sample (UMDF Version 2)
description: Demonstrates how to use UMDF 2 to write a driver and to employ best practices.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/echo/umdf2/umdf2echo.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: UMDF SocketEcho Sample (UMDF Version 1)
description: Demonstrates how to use UMDF version 1 to write a driver and demonstrates best practices.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/echo/umdfSocketEcho/umdfsocketecho.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Hardware Event Sample
description: Demonstrates different ways a kernel-mode driver can notify an application about a hardware event.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/event/eventsample.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: File History Sample
description: A console application that starts the file history service, if it is stopped, and schedules regular backups.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/filehistory/filehistory.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: WDF Installation Package
description: Demonstrates how to install WDF packages on a system.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/installwdf/installwdf.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Non-PnP Driver Sample
description: Demonstrates how to write a non-PnP driver using the Kernel Mode Driver Framework.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/ioctl/kmdf/ioctl.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: IOCTL
description: Demonstrates usage of four different types of IOCTLs
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/ioctl/wdm/ioctl.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: ObCallback Callback Registration Driver
description: Demonstrates the use of registered callbacks for process protection.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/obcallback/obcallback.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: PCIDRV - WDF Driver for PCI Device
description: Demonstrates how to write a KMDF driver for a PCI device.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/pcidrv/pcidrv.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Kernel Counter Sample (Kcs)
description: Demonstrates the use of the kernel-mode performance library.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/perfcounters/kcs/kcs.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: RegFltr Sample Driver
description: Demonstrates how to write a registry filter driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/registry/regfltr/regfltr.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Toaster Sample Driver
description: An iterative series of samples that demonstrate KDMF and UDMF1 driver development.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/toaster/toastDrv/toaster.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Toaster Package Sample Driver
description: Simulates hardware-first and software-first installation of the toaster sample driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/toaster/toastpkg/toastpkg.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Toaster Sample (UMDF version 2)
description: An iterative series of samples that demonstrate driver development using UMDF version 2.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/toaster/umdf2/umdf2toaster.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: System Trace Control
description: Demonstrates how to use event tracing control APIs to collect events from the system trace provider.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/tracing/SystemTraceControl/SystemTraceControl.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Eventdrv
description: Demonstrates the use of the Event Tracing for Windows (ETW) API in a driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/tracing/evntdrv/eventdrv.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Tracedrv
description: A sample driver instrumented for software tracing.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/tracing/tracedriver/tracedrv.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: UMDF Driver Skeleton Sample (UMDF version 1)
description: Demonstrates how to use UDMF to write a minimal driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /general/umdfSkeleton/umdfSkeleton.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: GPIO Sample Drivers
description: Illustrates how to write a GPIO controller driver that works in conjunction with the GPIO framework extension (GpioClx).
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /gpio/samples/sim.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: KMDF filter driver for a HID device
description: Illustrates using remote I/O target interfaces to open a HID collection in kernel-mode and send IOCTL requests to set and get feature reports.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /hid/firefly/firefly.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: HClient sample application
description: Demonstrates how to write a user-mode client application that communicates with HID devices.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /hid/hclient/hclient.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: HIDUSBFX2 sample driver
description: TBDemonstrates mapping of a non-HID USB device to a HID device.D
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /hid/hidusbfx2/hidusbfx2.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: HID Minidriver Sample (UMDF version 2)
description: Demonstrates how to write a HID minidriver using User-Mode Driver Framework (UMDF).
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /hid/vhidmini2/vhidmini2.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Keyboard Input WDF Filter Driver (Kbfiltr)
description: A WDF example of a keyboard input filter driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /input/kbfiltr/kbfiltr.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Keyboard Layout Samples
description: Demonstrates how to generate layouts for various keyboards and locales.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /input/layout/kbd.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Mouse Input WDF Filter Driver (Moufiltr)
description: A WDF example of a mouse input filter driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /input/moufiltr/moufiltr.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Bindview Network Configuration Utility
description: An application that demonstrates how to use INetCfg APIs to enumerate, install, uninstall, bind and unbind network components.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/config/bindview/bindview.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Fakemodem Driver
description: Demonstrates a simple controller-less modem driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/modem/fakemodem/fakemodem.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Hyper-V Extensible Switch extension filter driver
description: A base library used to implement a Hyper-V Extensible Switch extension filter driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/ndis/extension/extensions.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: NDIS 6.0 Filter Driver
description: A pass-through NDIS 6 filter driver demonstrating the basic principles of an NDIS 6.0 Filter driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/ndis/filter/filter.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: NDIS MUX Intermediate Driver and Notify Object
description: An NDIS 6.0 driver that demonstrates the operation of an N:1 MUX driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/ndis/mux/mux.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: NDIS Connection-less Protocol WDM Driver Sample
description: Demonstrates a connection-less NDIS 6.0 protocol WDM driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/ndis/ndisprot/6x/ndisprot60.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Connection-less NDIS 6.0 Protocol KMDF Sample Driver
description: Demonstrates a connection-less NDIS 6.0 protocol KMDF driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/ndis/ndisprot_kmdf/ndisprot_kmdf.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: NDIS Virtual Miniport Driver
description: Demonstrates the functionality of an NDIS miniport driver without requiring a physical network adapter.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/ndis/netvmini/6x/netvmini.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Radio Switch Test Driver for OSR USB-FX2 Development Board
description: Demonstrates how to structure a HID driver for radio switches for the OSR USB-FX2 Development Board.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/radio/HidSwitchDriverSample/HidSwitchDriverSample.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Windows Radio Management Sample
description: Demonstrates how to structure a Radio Manager for use with the Windows Radio Management APIs.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/radio/RadioManagerSample/RadioManagerSample.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Windows Filtering Platform Sample
description: A sample firewall that has a command-line interface which allows adding filters at various WFP layers.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/trans/WFPSampler/WFPSampler.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Windows Filtering Platform Packet Modification Sample
description: Demonstrates the packet modification capabilities of the Windows Filtering Platform (WFP).
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/trans/ddproxy/ddproxy.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Windows Filtering Platform Traffic Inspection Sample
description: Demonstrates the traffic inspection capabilities of the Windows Filtering Platform (WFP).
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/trans/inspect/inspect.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Windows Filtering Platform MSN Messenger Monitor Sample
description: Demonstrates the stream inspection capabilities of the Windows Filtering Platform (WFP).
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/trans/msnmntr/msnmntr.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Windows Filtering Platform Stream Edit Sample
description: Demonstrates replacing a string pattern for a Transmission Control Protocol (TCP) connection using the Windows Filtering Platform (WFP).
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/trans/stmedit/stmedit.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: WDI samples
description: WDI samples
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/wlan/WDI/windows.msbuild.rtwssample.sln

Просмотреть файл

@ -3,6 +3,7 @@ sample:
- name: IHV Sample UI
description: IHV Sample UI
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: WSK TCP Echo Server
description: A minimal sample driver to demonstrate the usage of the Winsock Kernel (WSK) programming interface.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /network/wsk/echosrv/echosrv.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Near-Field Proximity Sample Driver (UMDF Version 1)
description: Demonstrates how to use UMDF version 1 to write a near-field proximity driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /nfp/net/netnfp.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Power Engine Plugin (PEP) ACPI Sample
description: Demonstrates an interface which allows PEP to implement ACPI runtime methods natively via a driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /pofx/PEP/pepsamples.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Power Framework (PoFx) Sample (UMDF Version 2)
description: Demonstrates how a UMDF version 2 driver can implement F-state-based power management.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /pofx/UMDF2/pofx.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: KMDF Power Framework (PoFx) Sample
description: Demonstrate how a KMDF driver can implement F-state-based power management.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /pofx/WDF/pofx.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Magnetic Stripe Reader Driver Sample
description: This UMDF version 2 sample serves as a template for creating a new Magnetic Stripe Reader driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /pos/drivers/MagneticStripeReader/MagneticStripeReader.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Barcode Scanner Driver Sample
description: This UDMF version 2 sample serves as a template for creating a new Barcode Scanner driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /pos/drivers/barcodescanner/BarcodeScanner.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: OEM Printer Customization Plug-in Samples
description: Provides examples of how to build OEM printer customization plug-ins.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /print/OEM Printer Customization Plug-in Samples/C++/oemdll.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: OpenXPS Documents Print Sample
description: Contains a set of documents that exercise a variety of features of OpenXPS.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /print/SampleOpenXPS/SampleOpenXPS.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: XPS Documents Print Sample
description: Contains a set of documents that exercise a variety of features of the XML Paper Specification.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /print/SampleXPS/SampleXPS.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Print Pipeline Simple Filter
description: This sample shows how to use the print pipeline's filter interfaces.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /print/SimplePipelineFilter/SimplePipelineFilter.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: XPSDrv Driver and Filter Sample
description: Provide a starting point for developing XPSDrv printer drivers and to illustrate the facility and potential of an XPSDrv print driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /print/XPSDrvSmpl/XPSDrvSmpl.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: XPS Rasterization Filter Service Sample
description: Implements an XPSDrv filter that rasterizes fixed pages in an XPS document.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /print/XpsRasFilter/XpsRasFilter.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Print auto-configuration sample
description: Demonstrates how to implement auto-configuration in v4 print drivers.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /print/autoconfig/AutoConfig.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Common Property Sheet User Interface (CPSUI) Sample
description: The CPSUISAM application causes the CPSUI to call the print spooler to create property sheet pages for the default printer.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /print/cpsuisam/cpsuisam.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Printer Extension Sample
description: Demonstrates how to use .NET to build a customized, desktop UI for a v4 print driver.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- csharp
technologies:
- windows
vssolution: /print/v4PrintDriverSamples/PrinterExtensionSample/PrinterExtensionSample.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Print Driver Constraints Sample
description: Demonstrates how to implement advanced constraint handling and PrintTicket/PrintCapabilities handling using JavaScript.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- js
- javascript
technologies:
- windows
vssolution: /print/v4PrintDriverSamples/v4PrintDriver-ConstraintScript/ConstraintScript.sln

Просмотреть файл

@ -3,9 +3,11 @@ sample:
- name: USB Host-Based Print Driver Sample
description: Demonstrates how to support host-based devices that use the v4 print driver model and are connected via USB.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- js
- javascript
- xml
technologies:
- windows
vssolution: /print/v4PrintDriverSamples/v4PrintDriver-HostBasedSampleDriver/HostBasedSampleDriver.sln

Просмотреть файл

@ -3,9 +3,11 @@ sample:
- name: Print Driver USB Monitor and Bidi Sample
description: Demonstrates how to support bidirectional (Bidi) communication over the USB bus using JavaScript and XML.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- js
- javascript
- xml
technologies:
- windows
vssolution: /print/v4PrintDriverSamples/v4PrintDriver-USBMon-Bidi-Extension/USBMon-Bidi-Extension.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: WSDMon Bidi Extension Sample
description: Demonstrates how to use an XML extension file to support bidirectional (Bidi) communication with a WSD connected printer.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- xml
technologies:
- windows
vssolution: /print/v4PrintDriverSamples/v4PrintDriver-WSDMon-Bidi-Extension/WSDMon-Bidi-Extension.sln

Просмотреть файл

@ -3,8 +3,10 @@ sample:
- name: Standard SD Host Controller Miniport
description: Provides a functional miniport implementation for a standard SD host controller.
generateZip: true
preserveParentHierarchy: true
author: windows-driver-samples
languages:
- cpp
technologies:
- windows
vssolution: /sd/miniport/sdhc/sdhc.sln

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше