blob: 48f93a69f73de8249cc647caaafe298ef1be72b5 (
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
31
32
33
34
35
36
37
38
39
40
41
|
/*++
Copyright (c) Microsoft Corporation All Rights Reserved
Module Name:
bthhfpmictopo.h
Abstract:
Declaration of topology miniport for the mic (external: headphone).
--*/
#ifndef _SYSVAD_BTHHFPMICTOPO_H_
#define _SYSVAD_BTHHFPMICTOPO_H_
// Function declarations.
NTSTATUS
PropertyHandler_BthHfpMicTopoFilter(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_BthHfpMicTopoNode(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_BthHfpMicTopoNodeEvent(
_In_ PPCEVENT_REQUEST EventRequest
);
NTSTATUS
PropertyHandler_BthHfpMicTopoFilterEvent(
_In_ PPCEVENT_REQUEST EventRequest
);
#endif // _SYSVAD_BTHHFPMICTOPO_H_
|