VideoCapture.h
上传用户:oldpeter23
上传日期:2013-01-09
资源大小:1111k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. //NetTalk
  2. /*------------------------------------------------------------------------------*
  3.  =============================
  4.    模块名称: VideoCapture.h
  5.  =============================
  6.  
  7.  [版权]
  8.  
  9.    2000-2002  115软件工厂  版权所有
  10.                                               
  11. *------------------------------------------------------------------------------*/
  12. #ifndef _VIDEOCAPTURE_H_
  13. #define _VIDEOCAPTURE_H_
  14. #define MAX_VFW_DEVICES    10
  15. class CVideoCapture
  16. {
  17. public:
  18. BOOL DisconnectFromDriver();
  19. int GetDriverNum();
  20. CVideoCapture();
  21. virtual ~CVideoCapture();
  22. BOOL Init();
  23. VOID Destroy();
  24. BOOL ConnectToDriver(SHORT DriverIndex);
  25. HWND GetCapWindow();
  26. private:    
  27. HWND m_hWndCap;
  28. protected:
  29. BOOL m_bResult;
  30. SHORT m_DriverIndex[MAX_VFW_DEVICES];
  31. };
  32. #endif