home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch23 / mix / mixview.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-03  |  1.1 KB  |  54 lines

  1. // mixview.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CMixView form view
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. class CMixView : public CFormView
  12. {
  13.     DECLARE_DYNCREATE(CMixView)
  14. protected:
  15.     CMixView();            // protected constructor used by dynamic creation
  16.  
  17.     //////////////////////
  18.     // MY CODE STARTS HERE
  19.     //////////////////////
  20.  
  21.     virtual void OnInitialUpdate();
  22.  
  23.     ////////////////////
  24.     // MY CODE ENDS HERE
  25.     ////////////////////
  26.  
  27. // Form Data
  28. public:
  29.     //{{AFX_DATA(CMixView)
  30.     enum { IDD = IDD_DIALOG1 };
  31.     CVBControl*    m_midi;
  32.     CVBControl*    m_wav;
  33.     //}}AFX_DATA
  34.  
  35. // Attributes
  36. public:
  37.  
  38. // Operations
  39. public:
  40.  
  41. // Implementation
  42. protected:
  43.     virtual ~CMixView();
  44.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  45.     // Generated message map functions
  46.     //{{AFX_MSG(CMixView)
  47.     afx_msg void OnDoneTegommWav(UINT, int, CWnd*, LPVOID);
  48.     afx_msg void OnDoneTegommMidi(UINT, int, CWnd*, LPVOID);
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54.