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