home *** CD-ROM | disk | FTP | other *** search
- // mixview.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CMixView form view
-
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
-
- class CMixView : public CFormView
- {
- DECLARE_DYNCREATE(CMixView)
- protected:
- CMixView(); // protected constructor used by dynamic creation
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- virtual void OnInitialUpdate();
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
- // Form Data
- public:
- //{{AFX_DATA(CMixView)
- enum { IDD = IDD_DIALOG1 };
- CVBControl* m_midi;
- CVBControl* m_wav;
- //}}AFX_DATA
-
- // Attributes
- public:
-
- // Operations
- public:
-
- // Implementation
- protected:
- virtual ~CMixView();
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- // Generated message map functions
- //{{AFX_MSG(CMixView)
- afx_msg void OnDoneTegommWav(UINT, int, CWnd*, LPVOID);
- afx_msg void OnDoneTegommMidi(UINT, int, CWnd*, LPVOID);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-