blob: 3ef8482d3453c17aed0deb370783070e425aa9b8 (
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:
bthhfpspeakertopo.h
Abstract:
Declaration of topology miniport for the Bluetooth Hands-Free Profile speaker (external).
--*/
#ifndef _SYSVAD_BTHHFPSPEAKERTOPO_H_
#define _SYSVAD_BTHHFPSPEAKERTOPO_H_
// Function declarations.
NTSTATUS
PropertyHandler_BthHfpSpeakerTopoFilter(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_BthHfpSpeakerTopoNode(
_In_ PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS
PropertyHandler_BthHfpSpeakerTopoNodeEvent(
_In_ PPCEVENT_REQUEST EventRequest
);
NTSTATUS
PropertyHandler_BthHfpSpeakerTopoFilterEvent(
_In_ PPCEVENT_REQUEST EventRequest
);
#endif // _SYSVAD_BTHHFPSPEAKERTOPO_H_
|