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
76
77
78
79
80
81
|
/*++
Copyright (c) Microsoft Corporation All Rights Reserved
Module Name:
minitopo.h
Abstract:
Declaration of topology miniport.
--*/
#ifndef _SIMPLEAUDIOSAMPLE_MINTOPO_H_
#define _SIMPLEAUDIOSAMPLE_MINTOPO_H_
#include "basetopo.h"
//=============================================================================
// Classes
//=============================================================================
///////////////////////////////////////////////////////////////////////////////
// CMiniportTopology
//
class CMiniportTopology :
public CMiniportTopologySimpleAudioSample,
public IMiniportTopology,
public CUnknown
{
private:
eDeviceType m_DeviceType;
union {
PVOID m_DeviceContext;
};
public:
DECLARE_STD_UNKNOWN();
CMiniportTopology
(
_In_opt_ PUNKNOWN UnknownOuter,
_In_ PCFILTER_DESCRIPTOR *FilterDesc,
_In_ USHORT DeviceMaxChannels,
_In_ eDeviceType DeviceType,
_In_opt_ PVOID DeviceContext
)
: CUnknown(UnknownOuter),
CMiniportTopologySimpleAudioSample(FilterDesc, DeviceMaxChannels),
m_DeviceType(DeviceType),
m_DeviceContext(DeviceContext)
{
}
~CMiniportTopology();
IMP_IMiniportTopology;
NTSTATUS PropertyHandlerJackDescription
(
_In_ PPCPROPERTY_REQUEST PropertyRequest,
_In_ ULONG cJackDescriptions,
_In_reads_(cJackDescriptions) PKSJACK_DESCRIPTION *JackDescriptions
);
NTSTATUS PropertyHandlerJackDescription2
(
_In_ PPCPROPERTY_REQUEST PropertyRequest,
_In_ ULONG cJackDescriptions,
_In_reads_(cJackDescriptions) PKSJACK_DESCRIPTION *JackDescriptions,
_In_ DWORD JackCapabilities
);
PVOID GetDeviceContext() { return m_DeviceContext; }
};
typedef CMiniportTopology *PCMiniportTopology;
#endif // _SIMPLEAUDIOSAMPLE_MINTOPO_H_
|