blob: 0b2303bdd5889ed6764a2217c42236378adb28ec (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*++
Copyright (c) Microsoft Corporation All Rights Reserved
Module Name:
a2dphptopo.h
Abstract:
Declaration of topology miniport for the mic (external: A2DP headphone).
--*/
#ifndef _SYSVAD_A2DPHPTOPO_H_
#define _SYSVAD_A2DPHPTOPO_H_
NTSTATUS
PropertyHandler_A2dpHpVolumeLevel_BasicSupport(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_A2dpHpMicVolumeLevel(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_A2dpHpMute_BasicSupport(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_A2dpHpMicMute(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_A2dpHpJackDescription(
_In_ PPCPROPERTY_REQUEST PropertyRequest,
_In_ ULONG cJackDescriptions,
_In_reads_(cJackDescriptions) PKSJACK_DESCRIPTION * JackDescriptions
);
NTSTATUS
PropertyHandler_A2dpHpJackDescription2(
_In_ PPCPROPERTY_REQUEST PropertyRequest,
_In_ ULONG cJackDescriptions,
_In_reads_(cJackDescriptions) PKSJACK_DESCRIPTION * JackDescriptions
);
NTSTATUS
PropertyHandler_A2dpHpJackContainerId(
_In_ PPCPROPERTY_REQUEST PropertyRequest,
_In_ ULONG cJackDescriptions,
_In_reads_(cJackDescriptions) PKSJACK_DESCRIPTION * JackDescriptions
);
NTSTATUS
PropertyHandler_A2dpHpTopoNodeEvent(
_In_ PPCEVENT_REQUEST EventRequest
);
NTSTATUS
PropertyHandler_A2dpHpOneShotReconnect(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_A2dpHpOneShotDisconnect(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
#endif // _SYSVAD_A2DPHPTOPO_H_
|