- Remove dead code
[reactos.git] / reactos / drivers / wdm / audio / backpln / portcls / port.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS
4 * FILE: drivers/multimedia/portcls/port/port.h
5 * PURPOSE: Port Class driver / Private header for IPort
6 * PROGRAMMER: Andrew Greenwood
7 *
8 * HISTORY:
9 * 27 Jan 07 Created
10 */
11
12
13 /*
14 Private header for Port implementations
15 */
16
17 #ifndef PORT_PRIVATE_H
18 #define PORT_PRIVATE_H
19
20 #include "private.h"
21 #include <stdunk.h>
22 #include <portcls.h>
23
24 #if 0
25 typedef struct CPort
26 {
27 union
28 {
29 IUnknown IUnknown;
30 IPort IPort;
31 };
32
33 LONG m_ref_count;
34 PUNKNOWN m_outer_unknown;
35 } CPort;
36 #endif
37
38 #endif