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.

26 lines
649 B

  1. // $Header: G:/SwDev/WDM/Video/bt848/rcs/Vidchifc.h 1.3 1998/04/29 22:43:42 tomz Exp $
  2. #ifndef __VIDCHIFC_H
  3. #define __VIDCHIFC_H
  4. #ifndef __CHANIFACE_H
  5. #include "chanifac.h"
  6. #endif
  7. /* Class: VideoChanIface
  8. * Purpose: Used to establish a callback mecanism when CaptureChip-derived class
  9. * can call VxDVideoChannel class back to notify about an interrupt
  10. */
  11. class VideoChannel;
  12. class VideoChanIface : public ChanIface
  13. {
  14. private:
  15. VideoChannel *ToBeNotified_;
  16. public:
  17. virtual void Notify( PVOID pTag, bool skipped );
  18. VideoChanIface( VideoChannel *aChan ) : ToBeNotified_( aChan ) {}
  19. };
  20. #endif