blob: 24c0e1c4eeb4de704ae81e144b6a1f47b9c9c95d (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/*++
Copyright (c) Microsoft Corporation All Rights Reserved
Module Name:
bthhfptopo.h
Abstract:
Declaration of topology miniport for the mic (external: headphone).
--*/
#ifndef _SYSVAD_BTHHFPTOPO_H_
#define _SYSVAD_BTHHFPTOPO_H_
NTSTATUS
PropertyHandler_BthHfpVolumeLevel_BasicSupport(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_BthHfpJackDescription(
_In_ PPCPROPERTY_REQUEST PropertyRequest,
_In_ ULONG cJackDescriptions,
_In_reads_(cJackDescriptions) PKSJACK_DESCRIPTION * JackDescriptions
);
NTSTATUS
PropertyHandler_BthHfpJackDescription2(
_In_ PPCPROPERTY_REQUEST PropertyRequest,
_In_ ULONG cJackDescriptions,
_In_reads_(cJackDescriptions) PKSJACK_DESCRIPTION * JackDescriptions
);
NTSTATUS
PropertyHandler_BthHfpJackContainerId(
_In_ PPCPROPERTY_REQUEST PropertyRequest,
_In_ ULONG cJackDescriptions,
_In_reads_(cJackDescriptions) PKSJACK_DESCRIPTION * JackDescriptions
);
NTSTATUS
PropertyHandler_BthHfpOneShotReconnect(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_BthHfpOneDisconnect(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_BthHfpTopoNodeEvent(
_In_ PPCEVENT_REQUEST EventRequest
);
#endif // _SYSVAD_BTHHFPTOPO_H_
|