MainFrm.h
上传用户:czshopping
上传日期:2022-05-22
资源大小:5430k
文件大小:2k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #include <vfw.h>
  5. typedef struct{
  6. int headsize;
  7. char buffer[3200];
  8.     BITMAPINFOHEADER bitmapheader;
  9. DWORD VideoFormatSize;
  10. } DIBINFO,*PDIBINFO;
  11. #if !defined(AFX_MAINFRM_H__97942AA1_DEE1_4745_9225_B35234BCDFDA__INCLUDED_)
  12. #define AFX_MAINFRM_H__97942AA1_DEE1_4745_9225_B35234BCDFDA__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. class CMainFrame : public CFrameWnd
  17. {
  18. protected: // create from serialization only
  19. CMainFrame();
  20. DECLARE_DYNCREATE(CMainFrame)
  21. // Attributes
  22. public:
  23. DIBINFO m_dibinfo;
  24. CFrameWnd m_wndSource;
  25. HWND m_WndCap;
  26. CAPDRIVERCAPS  m_caps;
  27. void ChangeSize();
  28. // Operations
  29. public:
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CMainFrame)
  33. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. public:
  37. virtual ~CMainFrame();
  38. #ifdef _DEBUG
  39. virtual void AssertValid() const;
  40. virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42. protected:  // control bar embedded members
  43. CStatusBar  m_wndStatusBar;
  44. CToolBar    m_wndToolBar;
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CMainFrame)
  48. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  49. afx_msg void OnClose();
  50. afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
  51. afx_msg void OnAppExit();
  52. afx_msg void OnFormat();
  53. afx_msg void OnPreview();
  54. afx_msg void OnSource();
  55. afx_msg void OnCapture();
  56. //}}AFX_MSG
  57. DECLARE_MESSAGE_MAP()
  58. };
  59. /////////////////////////////////////////////////////////////////////////////
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_MAINFRM_H__97942AA1_DEE1_4745_9225_B35234BCDFDA__INCLUDED_)