Leaked source code of windows server 2003
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

  1. // $Header: G:/SwDev/WDM/Video/bt848/rcs/Chanifac.h 1.3 1998/04/29 22:43:30 tomz Exp $
  2. #ifndef __CHANIFACE_H
  3. #define __CHANIFACE_H
  4. /* Class: ChanIface
  5. * Purpose: Defines interface between CaptureChip class and VxDVideoChannel class
  6. * Attributes:
  7. * Operations:
  8. * virtual void Notify() - called by CaptureChip to report an interrupt
  9. */
  10. class ChanIface
  11. {
  12. public:
  13. virtual void Notify( PVOID, bool skipped ) {}
  14. };
  15. #endif