-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrtsdtopo.h
More file actions
63 lines (49 loc) · 1.57 KB
/
rtsdtopo.h
File metadata and controls
63 lines (49 loc) · 1.57 KB
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
/*
Module Name:
rtsdtopo.h
Abstract:
Declaration of topology miniport.
*/
#ifndef __RTSDTOPO_H_
#define __RTSDTOPO_H_
//=============================================================================
// Classes
//=============================================================================
///////////////////////////////////////////////////////////////////////////////
// CMiniportTopology
//
class CMiniportTopology : public IMiniportTopology, public CUnknown {
protected:
PADAPTERCOMMON m_AdapterCommon; // Adapter common object.
PPCFILTER_DESCRIPTOR m_FilterDescriptor; // Filter descriptor.
public:
DECLARE_STD_UNKNOWN();
DEFINE_STD_CONSTRUCTOR(CMiniportTopology);
~CMiniportTopology();
IMP_IMiniportTopology;
NTSTATUS Init(
IN PUNKNOWN UnknownAdapter,
IN PPORTTOPOLOGY Port_
);
// PropertyHandlers
NTSTATUS PropertyHandlerBasicSupportVolume(
IN PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS PropertyHandlerCpuResources(
IN PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS PropertyHandlerGeneric(
IN PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS PropertyHandlerMute(
IN PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS PropertyHandlerMuxSource(
IN PPCPROPERTY_REQUEST PropertyRequest
);
NTSTATUS PropertyHandlerVolume(
IN PPCPROPERTY_REQUEST PropertyRequest
);
};
typedef CMiniportTopology *PCMiniportTopology;
#endif