blob: 4e87253a2e9fa0d66727236e8486b83a2c1c4ef7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*++
Copyright (c) Microsoft Corporation All Rights Reserved
Module Name:
usbhsspeakertopo.h
Abstract:
Declaration of topology miniport for the USB Headset speaker (external).
--*/
#ifndef _SYSVAD_USBHSSPEAKERTOPO_H_
#define _SYSVAD_USBHSSPEAKERTOPO_H_
// Function declarations.
NTSTATUS
PropertyHandler_UsbHsSpeakerTopoFilter(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_UsbHsSpeakerTopoFilterEvent(
_In_ PPCEVENT_REQUEST EventRequest
);
#endif // _SYSVAD_USBHSSPEAKERTOPO_H_
|