You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
459 B
21 lines
459 B
// $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
|