-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathIBonDriver2.h
39 lines (27 loc) · 989 Bytes
/
IBonDriver2.h
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
// IBonDriver2.h: IBonDriver2 クラスのインターフェイス
//
//////////////////////////////////////////////////////////////////////
#if !defined(_IBONDRIVER2_H_)
#define _IBONDRIVER2_H_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "IBonDriver.h"
// 凡ドライバインタフェース2
class IBonDriver2 : public IBonDriver
{
public:
virtual LPCTSTR GetTunerName(void) = 0;
virtual const BOOL IsTunerOpening(void) = 0;
virtual LPCTSTR EnumTuningSpace(const DWORD dwSpace) = 0;
virtual LPCTSTR EnumChannelName(const DWORD dwSpace, const DWORD dwChannel) = 0;
// Shut up warning
// warning: 'IBonDriver2::SetChannel' hides overloaded virtual function
using IBonDriver::SetChannel;
virtual const BOOL SetChannel(const DWORD dwSpace, const DWORD dwChannel) = 0;
virtual const DWORD GetCurSpace(void) = 0;
virtual const DWORD GetCurChannel(void) = 0;
// IBonDriver
virtual void Release(void) = 0;
};
#endif // !defined(_IBONDRIVER2_H_)