windows-nt/Source/XPSP1/NT/drivers/wdm/capture/mini/bt848/chanifac.h

22 lines
438 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
// $Header: G:/SwDev/WDM/Video/bt848/rcs/Chanifac.h 1.3 1998/04/29 22:43:30 tomz Exp $
#ifndef __CHANIFACE_H
#define __CHANIFACE_H
/* Class: ChanIface
* Purpose: Defines interface between CaptureChip class and VxDVideoChannel class
* Attributes:
* Operations:
* virtual void Notify() - called by CaptureChip to report an interrupt
*/
class ChanIface
{
public:
virtual void Notify( PVOID, bool skipped ) {}
};
#endif