⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vcapdevice.h

📁 2个avstream类型驱动演示
💻 H
字号:
// VcapDevice.h: interface for the VcapDevice class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_VCAPDEVICE_H__AFFA0C3E_D929_4A95_BE4F_C90AB554F49A__INCLUDED_)
#define AFX_VCAPDEVICE_H__AFFA0C3E_D929_4A95_BE4F_C90AB554F49A__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

//////////////////////////////////////////////////////////////////////
// VcapDevice
class VcapDevice : public KsDevice
{
	SAFE_DESTRUCTORS
public:
	VcapDevice() {}
	~VcapDevice() {}


// PNP Handlers Of Interest - none. Basically, it means no dispatch table
// will be registered and no device is supported. This is equivalent to
// simply using KsDevice in the descriptor and not bothering deriving
// the useless class. Deriving from KsDevice, however, gives some flexibility
// to add device support in the future.	

};

//////////////////////////////////////////////////////////////////////////
// Definitions of custom DEVICE properties. 
// Place them under #ifdef KAVSTREAM_MAIN to allow dimension-less array 
// initialization avoiding multiple definitions

#ifdef KAVSTREAM_MAIN
// ...
#endif // KAVSTREAM_MAIN


#endif // !defined(AFX_VCAPDEVICE_H__AFFA0C3E_D929_4A95_BE4F_C90AB554F49A__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -