Seek.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #if !defined(AFX_SEEK_H__82E4B390_2B41_43D7_9D19_5C4939F336BD__INCLUDED_)
  2. #define AFX_SEEK_H__82E4B390_2B41_43D7_9D19_5C4939F336BD__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // Seek.h : header file
  7. //
  8. #define WM_SEEKOK WM_USER+34
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CSeek dialog
  11. class CSeek : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CWnd* m_pParent;
  16. DWORD m_nMaxFrameNum;
  17. DWORD m_nMaxTime;
  18. CSeek(CWnd* pParent = NULL); // standard constructor
  19. // Dialog Data
  20. //{{AFX_DATA(CSeek)
  21. enum { IDD = IDD_SEEK };
  22. int m_nSeekType;
  23. UINT m_nValue;
  24. //}}AFX_DATA
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CSeek)
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33. // Generated message map functions
  34. //{{AFX_MSG(CSeek)
  35. afx_msg void OnSeek();
  36. virtual BOOL OnInitDialog();
  37. virtual void OnOK();
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. //{{AFX_INSERT_LOCATION}}
  42. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  43. #endif // !defined(AFX_SEEK_H__82E4B390_2B41_43D7_9D19_5C4939F336BD__INCLUDED_)